-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
62 lines (62 loc) · 2.16 KB
/
tsconfig.base.json
File metadata and controls
62 lines (62 loc) · 2.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictStandalone": true,
"strictTemplates": true
},
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"outDir": "dist/out-tsc",
"paths": {
"@bowstring/colors": [ "libs/colors/src/index.ts" ],
"@bowstring/config": [ "libs/config/src/index.ts" ],
"@bowstring/core": [ "libs/core/src/index.ts" ],
"@bowstring/i18n": [ "libs/i18n/src/index.ts" ],
"@bowstring/surface": [ "libs/surface/src/index.ts" ],
"@bowstring/symbols": [ "libs/symbols/src/index.ts" ]
},
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"types": [
"@angular/localize",
"@types/body-scroll-lock",
"@types/compression",
"@types/cookie-parser",
"@types/google.maps",
"@types/lodash",
"@types/masonry-layout",
"@types/serviceworker"
]
},
"exclude": [
"dist",
"node_modules",
"temp",
"tmp",
"**/README.md"
],
"include": [ "!**/*.ts" ]
}