-
Notifications
You must be signed in to change notification settings - Fork 71
Bump typescript from 5.1.6 to 6.0.3 #2090
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -125,7 +125,7 @@ | |
| "tsx": "^4.21.0", | ||
| "typedoc": "^0.25.1", | ||
| "typedoc-plugin-markdown": "^4.0.3", | ||
| "typescript": "^5.1.6" | ||
| "typescript": "^6.0.3" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Neither There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Both |
||
| }, | ||
| "nyc": { | ||
| "extends": "@istanbuljs/nyc-config-typescript", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typedoc: "^0.25.1"is incompatible with TypeScript 6.0TypeDoc 0.25 officially supports TypeScript 4.6 through 5.4 only (it is now unmaintained). Running
npm run docsornpm run doc:jsonagainst TypeScript 6.0 will fail at runtime because TypeDoc 0.25 does not understand the TypeScript 6 compiler API. TypeDoc 0.28+ is required for TypeScript 5.0–5.8 support, and TypeScript 6.0 support requires an even newer TypeDoc release (tracked in TypeStrong/typedoc#3084). Thetypedocandtypedoc-plugin-markdowndevDependencies must be upgraded before this bump can land.