chore(deps-dev): bump @types/node#41
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a0140aca39
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^24.10.1", | ||
| "@types/node": "^25.8.0", |
There was a problem hiding this comment.
Align Node type definitions with supported runtime
Pinning @types/node to major 25 while the package still advertises "node": ">=22" allows TypeScript to accept Node 25-only APIs during development, which can then fail at runtime for users on Node 22–24. This creates a compatibility gap between compile-time checks and the documented support matrix, so the types major should track the minimum supported Node line (or runtime support should be raised to match).
Useful? React with 👍 / 👎.
Summary
Validation
Refs #33.