aece3669e5
The docs examples are switched to Ivy. On CI, the tests are run with both Ivy and ViewEngine. Partially addresses: [FW-1609](https://angular-team.atlassian.net/browse/FW-1609) PR Close #36143
26 lines
487 B
JSON
26 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": [
|
|
"node_modules/*",
|
|
"**/*-aot.ts"
|
|
]
|
|
}
|