Fix the types

This commit is contained in:
Jarred Sumner
2022-04-03 17:24:26 -07:00
parent 665acdb170
commit 70bb8bda23
4 changed files with 1214 additions and 278 deletions

View File

@@ -1,11 +1,3 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
"target": "esnext",
"module": "esnext",
"types": ["../../types/bun"]
}
"extends": "../../tsconfig.json"
}

7
tsconfig.json Normal file
View File

@@ -0,0 +1,7 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"typeRoots": ["./types"],
"types": ["bun"]
}
}

1473
types/bun/bun.d.ts vendored

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
{
"name": "@types/bun",
"name": "bun",
"types": "./bun.d.ts"
}