-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.53 KB
/
tsconfig.json
File metadata and controls
46 lines (46 loc) · 1.53 KB
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
45
46
{
"compileOnSave": false,
"compilerOptions": {
"paths": {
"@guard/*":["src/app/guards/*"],
"@interceptor/*":["src/app/interceptors/*"],
"@environment/*":["src/environments/*"],
"@auth-model/*":["src/app/modules/auth/models/*"],
"@auth-service/*":["src/app/modules/auth/services/*"],
"@auth-component/*":["src/app/modules/auth/components/*"],
"@platform-layout/*":["src/app/modules/platform/layouts/*"],
"@platform-model/*":["src/app/modules/platform/models/*"],
"@platform-service/*":["src/app/modules/platform/services/*"],
"@platform-component/*":["src/app/modules/platform/components/*"],
"@shared-component/*":["src/app/modules/shared/components/*"],
"@shared-model/*":["src/app/modules/shared/models/*"],
},
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}