Skip to content

Commit 19aafb9

Browse files
fix(sdk): add bun-types to tsconfig to fix SDK typecheck when using Bun
This ensures Bun's type declarations are included during type checking, preventing false errors in the SDK. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent fb858ed commit 19aafb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"declaration": true,
1313
"outDir": "./dist",
1414
"allowImportingTsExtensions": false,
15-
"types": ["node"]
15+
"types": ["node", "bun-types"]
1616
},
1717
"include": ["src/**/*.ts"],
1818
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)