Skip to content
Closed
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
54 changes: 20 additions & 34 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.21",
"@types/node": "^26.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

SUGGESTION: @types/node is bumped across 4 major versions (22 -> 26).

@types/node@26 ships types for Node 26, but package.json declares engines.node >= 20.10.0. Using Node 26 types against a Node 20 runtime baseline can let Node 22+/26-only APIs typecheck cleanly while being unavailable at runtime. The prior ^22 pin was already ahead of the engine floor, so this widens that gap. Confirm the CI typecheck (tsc --noEmit via npm run test:ci / check) passes green before merging.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

"@types/papaparse": "^5.3.16",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
Expand Down
Loading