angular/scripts/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

14 lines
307 B
JSON

{
"compilerOptions": {
"outDir": "../dist/dev-infra-scripts",
"target": "es2020",
"lib": ["es2020"],
"module": "Node16",
"types": ["node"],
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"rewriteRelativeImportExtensions": true
}
}