mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
`PromiseSettledResult<void>` requires the ES2020 typings. Those might not be provided (or `skipLibCheck` is not enabled). fixes #63931 PR Close #63955
17 lines
461 B
JSON
17 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"]
|
|
}
|