2016-10-12 04:44:49 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2016-11-20 20:28:37 -05:00
|
|
|
"lib": ["es2015", "dom"],
|
2016-10-12 04:44:49 -04:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2016-10-20 20:01:16 -04:00
|
|
|
"typeRoots": [
|
|
|
|
"../../node_modules/@types/"
|
|
|
|
]
|
2016-10-12 04:44:49 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"files": [
|
|
|
|
"app/app.module.ts",
|
2016-10-20 20:01:16 -04:00
|
|
|
"app/main-aot.ts"
|
2016-10-12 04:44:49 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"genDir": "aot",
|
|
|
|
"skipMetadataEmit" : true
|
|
|
|
}
|
|
|
|
}
|