-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
35 lines (35 loc) · 1.25 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@crm/admin/domain": ["libs/admin/domain/src/index.ts"],
"@crm/admin/feature": ["libs/admin/feature/src/index.ts"],
"@crm/appointments/domain": ["libs/appointments/domain/src/index.ts"],
"@crm/appointments/week/feature": [
"libs/appointments/week/feature/src/index.ts"
],
"@crm/appointments/week/ui": ["libs/appointments/week/ui/src/index.ts"],
"@crm/auth/api": ["libs/auth/api/src/index.ts"],
"@crm/auth/domain": ["libs/auth/domain/src/index.ts"],
"@crm/auth/feature": ["libs/auth/feature/src/index.ts"],
"@crm/core/domain": ["libs/core/domain/src/index.ts"],
"@crm/shared/api": ["libs/shared/api/src/index.ts"],
"@crm/shared/domain": ["libs/shared/domain/src/index.ts"],
"@crm/shared/ui": ["libs/shared/ui/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}