mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
15 lines
306 B
JSON
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"]
|
|
}
|
|
}
|