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
38 lines
734 B
JSON
38 lines
734 B
JSON
{
|
|
"extends": "../tsconfig-build.json",
|
|
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"stripInternal": false,
|
|
"target": "es2020",
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@angular/compiler": ["../../dist/packages/compiler"]
|
|
},
|
|
"strict": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"outDir": "../../dist/packages/compiler-cli"
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
},
|
|
|
|
"exclude": [
|
|
"integrationtest"
|
|
],
|
|
|
|
"files": [
|
|
"index.ts",
|
|
"src/main.ts",
|
|
"src/extract_i18n.ts",
|
|
"src/language_services.ts",
|
|
"../../node_modules/@types/node/index.d.ts",
|
|
"../../node_modules/@types/jasmine/index.d.ts"
|
|
]
|
|
}
|