28 lines
579 B
JSON
28 lines
579 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2015", "dom"],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"../../node_modules/@types/"
|
|
]
|
|
},
|
|
|
|
"files": [
|
|
"src/uni/app.server.ts",
|
|
"src/uni/server-aot.ts"
|
|
],
|
|
|
|
"angularCompilerOptions": {
|
|
"genDir": "aot",
|
|
"entryModule": "./src/app/app.module#AppModule",
|
|
"skipMetadataEmit" : true
|
|
}
|
|
}
|