mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Our integration tests are based on the CLI. CLI build force the target to ES2022 else it logs a warning PR Close #58022
21 lines
485 B
JSON
21 lines
485 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2022",
|
|
"typeRoots": ["node_modules/@types"],
|
|
"lib": ["es2018", "dom"]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true
|
|
}
|
|
}
|