mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This option has no longer any effect as Ivy is the only rendering engine. BREAKING CHANGE: Angular compiler option `enableIvy` has been removed as Ivy is the only rendering engine. PR Close #47346
22 lines
502 B
JSON
22 lines
502 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
"flatModuleId": "flat_module",
|
|
"flatModuleOutFile": "index.js",
|
|
"skipTemplateCodegen": true
|
|
},
|
|
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2015", "dom"],
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"outDir": "../node_modules/flat_module",
|
|
"rootDir": "",
|
|
"target": "es2015",
|
|
"typeRoots": ["../node_modules/@types"]
|
|
},
|
|
|
|
"files": ["public-api.ts"]
|
|
}
|