Files
bun.sh/bench/websocket-server/tsconfig.json
2022-10-18 22:16:51 -07:00

15 lines
306 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
// so that if your project isn't using TypeScript, it still has autocomplete
"allowJs": true,
// "bun-types" is the important part
"types": ["bun-types"]
}
}