angular/integration/nodenext_resolution/tsconfig.json
Matthieu Riegler 56cb0931ef refactor(core): drop the usage of PromiseSettledResult<void> (#63955)
`PromiseSettledResult<void>` requires the ES2020 typings. Those might not be provided (or `skipLibCheck` is not enabled).

fixes #63931

PR Close #63955
2025-09-19 20:27:25 +00:00

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"]
}