angular/packages/compiler-cli/tsconfig.json
Paul Gschwendtner 7cba3f3834 build: update tsconfigs to use ES2020 as target and module (#43431)
Updates the primary tsconfig files to use ES2020 as target and module.
This helps IDEs and reflects what we generate in production, allowing
the use of JS features that are natively supported in APF v13.

PR Close #43431
2021-10-01 18:28:42 +00:00

14 lines
204 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"lib": [
"es2020"
],
"strict": true,
"types": [
"jasmine"
]
}
}