angular/scripts/tsconfig.json
Charles Lyding 6758f9326e build: use Node.js built-in TypeScript support for dev-infra scripts
This change removes the use of `tsx` to execute both `ng-dev` and the repo level development scripts.
2026-01-02 08:15:40 +01:00

15 lines
339 B
JSON

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