Fix: @types/node incompatibility with vite warnings on npm install #1121
+66
−30
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, on
main, whennpm installis ran:Likely introduced by adding vitest, which relies on vite:
npm ls vitecan show it:Motivation and Context
Vite’s peer types range: vite@7.2.2 (pulled by vitest) declares an optional peer @types/node of ^20.19.0 || >=22.12.0.
Current installed types: @types/node@22.8.1 does not satisfy >=22.12.0 (nor is it ^20.19.x), so npm reports a peer conflict and says it’s overriding.
Updated @types/node to the minimum required by vite,
22.12.0.How Has This Been Tested?
npm install should bring up no warnings
Types of changes
Checklist
Additional context