-
Notifications
You must be signed in to change notification settings - Fork 53
/
tsconfig.json
35 lines (35 loc) · 1.03 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
{
"compilerOptions": {
"removeComments": true,
"noImplicitAny": false,
"module": "es2020",
"target": "es5",
"outDir": "dist",
"experimentalDecorators": true,
"stripInternal": true,
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"moduleResolution": "node",
"rootDir": ".",
"types": ["node", "jasmine"],
"lib": ["dom", "es2015"],
"suppressImplicitAnyIndexErrors": true
},
"angularCompilerOptions": {
"genDir": "./ngfactory",
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"preserveSymlinks": true,
"enableIvy": true
},
"exclude": ["node_modules", "dist"],
"compileOnSave": false,
"buildOnSave": false,
"atom": { "rewriteTsconfig": false }
}