1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-10-05 21:16:09 +02:00
.profile/packages/config-typescript/tsconfig.json

34 lines
835 B
JSON
Raw Normal View History

{
"compilerOptions": {
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
2024-09-11 23:53:26 +02:00
"noImplicitThis": true,
"noImplicitAny": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-09-11 23:53:26 +02:00
"verbatimModuleSyntax": true,
"isolatedModules": true,
"esModuleInterop": true,
2024-09-11 23:53:26 +02:00
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"jsx": "preserve",
2024-09-11 23:53:26 +02:00
"incremental": true,
"noEmit": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}