mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
With new version of node we can import ts files directly in our scripts rather than using tsx
22 lines
568 B
JSON
22 lines
568 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "bundler",
|
|
"preserveSymlinks": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"allowImportingTsExtensions": true,
|
|
"lib": ["ES2022"],
|
|
"types": [],
|
|
"skipLibCheck": true
|
|
}
|
|
}
|