{ "compilerOptions": { // Enable latest features "lib": ["ESNext"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, // Best practices "strict": false, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, "composite": true, "paths": { "@/*": ["./src/*"] }, "typeRoots": ["src/types", "./node_modules/@types"] }, "include": ["src", "types"], "exclude": ["node_modules", "dist", "build", "**/*.test.ts"] }