-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathtsconfig-aot.json
45 lines (45 loc) · 1.2 KB
/
tsconfig-aot.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
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"baseUrl": ".",
"rootDir": "build/src",
"outDir": "build-aot",
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"inlineSources": true,
"lib": [ "dom", "es6" ],
"noEmitHelpers": false, // apps fail to run if true
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@angular/core": ["node_modules/@angular/core"],
"@angular/common": ["node_modules/@angular/common"],
"@angular/forms": ["node_modules/@angular/forms"],
"rxjs/*": ["node_modules/rxjs/*"]
},
"strictNullChecks": false,
"stripInternal": true,
"skipLibCheck": true,
"sourceMap": true
},
"files": [
"build/src/app/index.ts"
],
"angularCompilerOptions": {
"genDir": "build-aot/codegen",
"strictMetadataEmit": true
},
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"atom": { "rewriteTsconfig": false },
"buildOnSave": false,
"compileOnSave": false
}