Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Widen allowed TS / TS ESLint versions
The latest version of TypeScript is 5.9, but no project can currently
use this without producing peer dependency warnings. To prevent this and
unlock new versions of TypeScript in the future, widen the peer
dependencies:

- Allow TypeScript 5.9 and any future version up to 6
- Allow TypeScript ESLint versions betwen 8.24 and 9

To ensure this does not cause a problem in this repo, also update the
development version of TypeScript and TypeScript ESLint to their latest
versions.
  • Loading branch information
mcmire committed Nov 20, 2025
commit 354f43a950cbd15727acdb3e68ceadb6a336795d
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"globals": "^15.9.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"typescript": "~5.8.0",
"typescript-eslint": "^8.28.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vite": "^5.4.19",
"vitest": "^2.1.9"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "~5.8.0",
"typescript-eslint": "^8.28.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "^2.1.9"
},
"peerDependencies": {
Expand All @@ -58,8 +58,8 @@
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jsdoc": "^50.2.4",
"typescript": ">=4.8.4 <5.9.0",
"typescript-eslint": "^8.24"
"typescript": ">=4.8.4 <6",
"typescript-eslint": ">=8.24 <9"
},
"engines": {
"node": "^18.18 || >=20"
Expand Down
1 change: 1 addition & 0 deletions packages/typescript/rules-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@
"no-use-before-define": "off",
"no-useless-constructor": "off",
"no-var": "error",
"no-with": "off",
"prefer-const": "error",
"prefer-promise-reject-errors": "off",
"prefer-rest-params": "error",
Expand Down
Loading
Loading