{ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "allowJs": true, "checkJs": true, "noEmit": 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, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "skipLibCheck": true, "skipDefaultLibCheck": true, "incremental": true }, "compileOnSave": false, "exclude": [ "node_modules", "built", "coverage", "**/*.ts" ] }