{ "compilerOptions": { "lib": ["ESNext"], "target": "ESNext", "module": "NodeNext", "allowJs": true, // Bundler mode "esModuleInterop": true, "moduleResolution": "NodeNext", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, "resolveJsonModule": true, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, "useUnknownInCatchVariables": false, } }