Files
tardis-bot/tsconfig.json

22 lines
573 B
JSON
Raw Permalink Normal View History

2026-05-14 20:06:15 +02:00
{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2023"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"isolatedModules": true
},
"include": ["src/**/*.ts", "src/**/*.json"]
}