-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.53 KB
/
tsconfig.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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": true,
"compilerOptions": {
"incremental": true,
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"strict": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["ES2020", "dom"],
"baseUrl": "./",
"paths": {
"@cache-server/*": ["src/cache-server/*"],
"@shared/*": ["src/app/shared/*"],
"@tables-editor/*": ["src/app/pages/projects/tables-editor/*"],
"@entries/*": ["src/app/pages/projects/tables/entries/*"],
"@tables/*": ["src/app/pages/projects/tables/*"],
"@projects/*": ["src/app/pages/projects/*"],
"@pages/*": ["src/app/pages/*"],
"@main-shared/*": ["src/app/main-shared/*"],
"@core/*": ["src/app/core/*"]
},
"allowUmdGlobalAccess": true
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"strictInjectionParameters": true,
"strictMetadataEmit": false,
"enableIvy": true
}
}