Skip to content

Commit 5dfbc30

Browse files
committed
chore(deps): bump typescript ^5.4.0 → ^6.0
TS 6.0 is the cleanup release before TS 7 (deprecations become errors). - typecheck (`tsc --noEmit`) passes clean. - Added `ignoreDeprecations: "6.0"` to tsconfig because tsup's DTS build injects `baseUrl` (deprecated in 6.0, removed in 7.0) — without it, `tsup --dts` errors and ships no .d.ts files. This is the TS-team-recommended interim silencer; revisit when tsup stops injecting baseUrl. - Full build (ESM + CJS + DTS) and typecheck both green.
1 parent ceef747 commit 5dfbc30

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"devDependencies": {
5656
"@biomejs/biome": "2.4.12",
5757
"tsup": "^8.0.0",
58-
"typescript": "^5.4.0",
58+
"typescript": "^6.0.3",
5959
"vitest": "^3.0.0"
6060
}
6161
}

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"module": "ESNext",
55
"moduleResolution": "bundler",
66
"lib": ["ES2020", "DOM"],
7+
"ignoreDeprecations": "6.0",
78
"strict": true,
89
"esModuleInterop": true,
910
"skipLibCheck": true,

0 commit comments

Comments
 (0)