angular/tools/tsconfig.json
Kristiyan Kostadinov d9c980a958 build: initial test of TypeScript 6
Resolves some initial test failures after updating to TypeScript 6.
2026-01-15 13:41:01 -08:00

15 lines
301 B
JSON

{
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"declaration": true,
"esModuleInterop": true,
"sourceMap": true,
"module": "esnext",
"moduleResolution": "bundler",
"types": ["node"],
"paths": {
"@angular/*": ["../packages/*/index"]
}
}
}