-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
51 lines (51 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
44
45
46
47
48
49
50
51
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"importHelpers": true,
"preserveConstEnums": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2019", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@hbx/theme": ["libs/theme/src/index.ts"],
"@hbx/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@hbx/admin/agencies/data-access": [
"libs/admin/agencies/data-access/src/index.ts"
],
"@hbx/admin/agencies/feature": [
"libs/admin/agencies/feature/src/index.ts"
],
"@hbx/admin/shared/view-models": [
"libs/admin/shared/view-models/src/index.ts"
],
"@hbx/admin/shell": ["libs/admin/shell/src/index.ts"],
"@hbx/utils/testing": ["libs/utils/testing/src/index.ts"],
"@hbx/admin/shared/ui-components": [
"libs/admin/shared/ui-components/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"],
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictTemplates": true
}
}