{ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "allowJs": true, "checkJs": true, "noEmitOnError": true, // ES2025 is the earliest that supports our API uses: https://node.green/#ES2025 // But TS doesn't implement it yet: https://github.com/microsoft/TypeScript/issues/61735 "target": "ESNext", "module": "NodeNext", "moduleResolution": "NodeNext", "types": ["node"], "lib": ["ESNext"], "noLib": false, "noImplicitAny": true, "noImplicitReturns": true, "noUnusedParameters": false, "noUnusedLocals": false, "noFallthroughCasesInSwitch": true, "declaration": false, "sourceMap": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "strict": true, "strictNullChecks": true, "strictPropertyInitialization": false, "skipLibCheck": true, "skipDefaultLibCheck": true, "experimentalDecorators": true, "verbatimModuleSyntax": true, "emitDecoratorMetadata": true, "resolveJsonModule": true, "isolatedModules": true, "incremental": true }, "compileOnSave": false, "exclude": [ "node_modules", "built", "coverage" ] }