Add @types/bun to api-contract for test file compilation

The test file imports from bun:test which requires bun types. Added
@types/bun dependency and configured tsconfig to include bun types.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
igm
2026-01-12 15:20:21 +08:00
parent 9c6694cad4
commit 0f50291490
3 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
{
"extends": "@macalinao/tsconfig/tsconfig.base.json",
"compilerOptions": {
"isolatedDeclarations": false
"isolatedDeclarations": false,
"types": ["bun"]
}
}