mistykey/packages/shared/jsconfig.node.json
2025-11-05 19:40:49 -05:00

28 lines
694 B
JSON

{
"$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"
]
}