{ "compilerOptions": { // Enable latest features "lib": ["DOM", "ESNext"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", "allowJs": true, // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, "customConditions": ["dev"], // JSX "jsx": "react-jsx", // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUnusedLocals": true, "noUnusedParameters": true, "types": ["node", "vitest/globals"] } }