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