mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Updates the i18n integration test to use Ivy in order to work with the new Angular v13 package format. PR Close #43431
28 lines
610 B
JSON
28 lines
610 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
"annotationsAs": "static fields",
|
|
"annotateForClosureCompiler": true,
|
|
},
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
|
"strictNullChecks": false,
|
|
"target": "es2020",
|
|
"noImplicitAny": false,
|
|
"sourceMap": false,
|
|
"experimentalDecorators": true,
|
|
"outDir": "built",
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"types": []
|
|
},
|
|
|
|
"exclude": [
|
|
"vendor",
|
|
"node_modules",
|
|
"built",
|
|
"dist",
|
|
"e2e"
|
|
]
|
|
}
|