-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
tsconfig.json
43 lines (43 loc) · 1.2 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
{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"outDir": "./dist/out-tsc",
"baseUrl": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2020",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"esnext",
"dom"
],
"paths": {
"material-community-components": [
"projects/material-community-components/public-api.ts"
],
"material-community-components/color-picker": [
"projects/material-community-components/color-picker/public-api.ts"
],
"material-community-components/timer-picker": [
"projects/material-community-components/timer-picker/public-api.ts"
],
"material-community-components/scrollspy": [
"projects/material-community-components/scrollspy/public-api.ts"
],
"material-community-components/speed-dial": [
"projects/material-community-components/speed-dial/public-api.ts"
]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictTemplates": true
}
}