Skip to content

Commit 123671a

Browse files
v1rtlclaude
andcommitted
fix: upgrade TypeScript to 5.x for bun-types compatibility
The @types/bun package uses const type parameters which require TypeScript 5.0+. Also adds skipLibCheck for faster builds. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b6dc92f commit 123671a

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

bun.lockb

397 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"express": "^4.22.1",
4141
"husky": "^8.0.3",
4242
"polka": "^1.0.0-next.28",
43-
"typescript": "^4.9.5",
43+
"typescript": "^5.9.3",
4444
"ws": "^8.19.0"
4545
},
4646
"peerDependencies": {

tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"rootDir": "src",
88
"isolatedModules": true,
99
"outDir": "dist",
10-
"preserveSymlinks": true
10+
"preserveSymlinks": true,
11+
"skipLibCheck": true
1112
},
1213
"include": ["src/**/*"]
1314
}

0 commit comments

Comments
 (0)