-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.23 KB
/
Copy pathtsconfig.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"compileOnSave": false,
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2017", "dom"],
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist/out-tsc",
"paths": {
"$site": ["./src/app/site.module"],
"$modals": ["./src/app/components/project/modals"],
"$ui": ["./src/app/shared/stores/ui"],
"$domain": ["./src/app/shared/stores/domain"],
"$settings": ["./src/app/shared/stores/settings"],
"$utils": ["./src/app/shared/utils"],
"$env": ["./src/environments/environment.ts"],
"$enums": ["./src/shared/models/enums.ts"]
},
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"target": "es5",
"module": "esnext",
"typeRoots": ["node_modules/@types"]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"preserveWhitespaces": false
},
"include": ["src/**/*"],
"exclude": ["e2e", "**/*.spec.ts", "node_modules"]
}