websocket-relay/tsconfig.json
2025-06-14 15:07:58 +02:00

22 lines
443 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "nodenext",
"target": "esnext",
"moduleResolution": "nodenext",
"strict": false,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"outDir": "dist/",
"types": [
"bun-types" // add Bun global
]
}
}