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"] } }