fixed tsconfig

This commit is contained in:
KeshavAnandCode
2026-03-20 17:54:58 -05:00
parent 085f9a06cb
commit 99932a4462

View File

@@ -1,29 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext", "target": "ESNext",
"module": "Preserve", "module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler", "moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true, "strict": true,
"skipLibCheck": true, "types": ["bun-types"]
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
} }
} }