mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
16f96eeabf
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
18 lines
337 B
JSON
18 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"
|
|
]
|
|
}
|