mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
56cb0931ef
`PromiseSettledResult<void>` requires the ES2020 typings. Those might not be provided (or `skipLibCheck` is not enabled). fixes #63931 PR Close #63955
18 lines
461 B
JSON
18 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist/out-tsc",
|
|
"rootDir": ".",
|
|
"target": "es2020",
|
|
"lib": ["es2020", "dom"],
|
|
"types": []
|
|
},
|
|
"files": ["include-all.ts", "node_modules/@types/jasmine/index.d.ts"]
|
|
}
|