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
9 lines
264 B
JSON
9 lines
264 B
JSON
/** Root tsconfig file for checking Angular packages with tsec. */
|
|
{
|
|
"extends": "./tsconfig-build.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": ["es2020", "dom"],
|
|
"plugins": [{"name": "tsec", "exemptionConfig": "./tsec-exemption.json"}]
|
|
}
|
|
}
|