{ "compilerOptions": { "baseUrl": "./", "paths": { "@/*": ["src/*"], "@types/*": ["types/*"] }, // Environment setup & latest features "lib": ["ESNext"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, // Bundler mode "moduleResolution": "bundler", "verbatimModuleSyntax": true, "emitDeclarationOnly": false, "noEmit": false, "declaration": true, "outDir": "./dist", // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false }, "include": ["src", "types"] }