-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
44 lines (44 loc) · 1.69 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": false,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2019", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@luomus/laji/client": ["libs/laji/client/src/index.ts"],
"@luomus/shared/assets": ["libs/shared/assets/src/index.ts"],
"@luomus/shared/models": ["libs/shared/schemas/src/index.ts"],
"@luomus/shared/services": ["libs/shared/services/src/index.ts"],
"@luomus/shared/utility": ["libs/shared/utility/src/index.ts"],
"@luomus/store/api-core": ["libs/store/api-core/src/index.ts"],
"@luomus/store/config": ["libs/store/config/src/index.ts"],
"@luomus/store/core": ["libs/store/core/src/index.ts"],
"@luomus/store/database": ["libs/store/database/src/index.ts"],
"@luomus/store/generate": ["libs/store/generate/src/index.ts"],
"@luomus/store/interface": ["libs/store/interface/src/index.ts"],
"@luomus/store/schema-cache": ["libs/store/schema-cache/src/index.ts"],
"@luomus/store/search": ["libs/store/search/src/index.ts"],
"@luomus/store/shared": ["libs/store/shared/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}