2017-02-22 13:13:21 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-03-31 19:57:13 -04:00
|
|
|
"target": "es5",
|
|
|
|
"module": "es2015",
|
2017-02-22 13:13:21 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"typeRoots": [
|
2017-03-31 19:57:13 -04:00
|
|
|
"node_modules/@types/"
|
2017-02-22 13:13:21 -05:00
|
|
|
]
|
|
|
|
},
|
2017-03-31 19:57:13 -04:00
|
|
|
|
2017-02-22 13:13:21 -05:00
|
|
|
"files": [
|
2017-03-31 19:57:13 -04:00
|
|
|
"src/app/app.module.ts",
|
|
|
|
"src/main-aot.ts"
|
2017-02-22 13:13:21 -05:00
|
|
|
],
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"genDir": "aot",
|
|
|
|
"entryModule": "./src/app/app.module#AppModule",
|
|
|
|
"skipMetadataEmit" : true
|
|
|
|
}
|
2017-02-22 13:13:21 -05:00
|
|
|
}
|