Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"node": ">=20.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@biomejs/biome": "^2.4.6",
"@swc/core": "^1.15.18",
"@types/node": "^25.3.3",
"@types/node": "^25.4.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The version of @types/node is set to ^25.4.0, which corresponds to a pre-release (next) version. The engines field in this package.json specifies a Node.js version of >=20.12.0. Using a next version for type definitions can introduce instability or types that are not yet available in the specified Node.js runtime. It is recommended to use a stable version of @types/node that matches the major version of your Node.js runtime to ensure type safety and stability. For example, you could use ^20.12.0 to align with your engines configuration.

Suggested change
"@types/node": "^25.4.0",
"@types/node": "^20.12.0",

"@vitest/coverage-v8": "^4.0.18",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
Expand Down
108 changes: 54 additions & 54 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading