-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
38 lines (38 loc) · 1.18 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"removeComments": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"strictBindCallApply": false,
"incremental": true,
"importHelpers": true,
"target": "es2015",
"module": "commonjs",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@config": ["config/index.ts"],
"@db/constants": [
"backend/database/src/constants/interfaces.entities.ts"
],
"@db/entities": ["backend/database/src/lib/entities"],
"@environments": ["config/constants.ts"],
"@nx-boilerplate/frontend/ui": ["frontend/ui/src/index.ts"],
"@ui/components": ["frontend/ui/components"],
"@types": ["frontend/app/src/common/types"],
"@utils": ["frontend/app/src/utils"],
"@services": ["frontend/app/src/common/services"]
}
},
"exclude": ["node_modules", "tmp"]
}