forked from airgap-it/airgap-angular-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 961 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 961 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"downlevelIteration": true, // To enable [].entries()
"target": "es5",
"lib": ["es2018", "dom"],
"skipLibCheck": true,
/* Strict Type-Checking Options */
"strict": false /* Enable all strict type-checking options. */,
"skipDefaultLibCheck": true
},
"angularCompilerOptions": {
"enableIvy": false,
"strictInjectionParameters": true,
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"strictInputAccessModifiers": true,
"strictMetadataEmit": false,
},
"paths": {
"core": ["packages/core/dist"],
"ngrx": ["packages/ngrx/dist"],
"@airgap/angular-core": ["packages/core/dist"],
"@airgap/angular-ngrx": ["packages/ngrx/dist"]
}
}