angular-cn/aio/content/examples/upgrade-phonecat-2-hybrid/tsconfig-aot.json

26 lines
513 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"removeComments": false,
"noImplicitAny": true,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true
},
"files": [
"app/app.module.ts",
"app/main-aot.ts"
],
"angularCompilerOptions": {
"skipMetadataEmit" : true,
"enableIvy": false,
}
}