setup-bun/tsconfig.json

12 lines
261 B
JSON
Raw Normal View History

2022-07-11 08:44:25 +02:00
{
"compilerOptions": {
2022-07-11 09:45:23 +02:00
"outDir": "dist/",
2022-07-11 08:44:25 +02:00
"lib": ["ESNext"],
"module": "esnext",
2022-07-11 09:57:02 +02:00
"target": "ES2018",
2022-07-11 09:45:23 +02:00
"moduleResolution": "node",
2022-07-11 08:44:25 +02:00
// "bun-types" is the important part
2022-07-11 09:45:23 +02:00
"types": ["bun-types"],
"skipLibCheck": true
2022-07-11 08:44:25 +02:00
}
}