mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Updates the repo to support TypeScript 5.3 and resolve any issues. Fixes include: * Updating usages of TS compiler APIs to match their new signatures. * In TS 5.3 negative numbers are represented as `PrefixUnaryExpression` instead of `NumericExpression`. These changes update all usages to account for it since passing a negative number into the old APIs results in a runtime error. PR Close #52572
26 lines
558 B
JSON
26 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist/out-tsc",
|
|
"rootDir": ".",
|
|
"target": "es5",
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.collection",
|
|
"es2015.iterable",
|
|
"es2015.promise"
|
|
],
|
|
"types": [],
|
|
},
|
|
"files": [
|
|
"include-all.ts",
|
|
"node_modules/@types/jasmine/index.d.ts"
|
|
]
|
|
}
|