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
17 lines
337 B
JSON
17 lines
337 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2015", "dom"],
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"rootDir": ".",
|
|
"skipLibCheck": true
|
|
},
|
|
"files": [
|
|
"src/main.ts"
|
|
]
|
|
}
|