angular/integration/typings_test_ts60/tsconfig.json
Kristiyan Kostadinov 81cabc1477 feat(core): add support for TypeScript 6
Updates the project to support TypeScript 6 and accounts for some of the breakages.
2026-02-17 08:40:38 -08:00

17 lines
458 B
JSON

{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"module": "es2022",
"moduleResolution": "bundler",
"outDir": "./dist/out-tsc",
"rootDir": ".",
"target": "ES2020",
"lib": ["ES2020", "dom"],
"types": []
},
"files": ["include-all.ts", "node_modules/@types/jasmine/index.d.ts"]
}