From 99932a4462858f8106e4340d8c13cd0a7439f17c Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Fri, 20 Mar 2026 17:54:58 -0500 Subject: [PATCH] fixed tsconfig --- tsconfig.json | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index bfa0fea..cc85826 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,29 +1,9 @@ { "compilerOptions": { - // Environment setup & latest features - "lib": ["ESNext"], "target": "ESNext", - "module": "Preserve", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, - - // Bundler mode + "module": "ESNext", "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, - - // Best practices "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "noImplicitOverride": true, - - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false + "types": ["bun-types"] } }