setup-bun/tsconfig.json
2022-07-11 09:57:02 +02:00

12 lines
261 B
JSON

{
"compilerOptions": {
"outDir": "dist/",
"lib": ["ESNext"],
"module": "esnext",
"target": "ES2018",
"moduleResolution": "node",
// "bun-types" is the important part
"types": ["bun-types"],
"skipLibCheck": true
}
}