mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
7cba3f3834
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
10 lines
264 B
JSON
10 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"}]
|
|
}
|
|
}
|