mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
14 lines
204 B
JSON
14 lines
204 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"strict": true,
|
|
"types": [
|
|
"jasmine"
|
|
]
|
|
}
|
|
}
|