angular/vscode-ng-language-service/integration/project/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

17 lines
376 B
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"experimentalDecorators": true,
"target": "es2015",
"strict": true,
"typeRoots": ["node_modules/@types"],
"paths": {
"post": ["./dist/post"]
}
},
"angularCompilerOptions": {
"strictTemplates": true,
"typeCheckHostBindings": true,
"strictInjectionParameters": true
}
}