govsearch / tsconfig.scripts.json
Katsuya Oda
Initial commit
5285b72 unverified
raw
history blame
761 Bytes
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "commonjs",
"moduleResolution": "Node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"paths": {
"~/*": ["./scripts/*"]
},
"resolveJsonModule": true,
"skipLibCheck": false,
"strict": true,
"strictNullChecks": true,
"target": "ES2022"
},
"include": ["scripts/**/*.ts"]
}