-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
fix(worker): support v12 node typings #10336
Conversation
@@ -17,7 +17,7 @@ | |||
"@types/babel__template": "^7.0.0", | |||
"@types/dedent": "0.7.0", | |||
"@types/jest": "24.0.2", | |||
"@types/node": "*", | |||
"@types/node": "~10.14.0", |
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.
Shouldn't the dependencies on I'm not even sure if typescript respects nested node _modules when searching for |
I want to install the lowest one without manually messing in the lockfile.
It does, otherwise this pr would have failed CI due to the 14 one I added |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
People using "older"
@types/node
will get type errors with the importTest plan
Installed a version of
@types/node
that matches our engine requirement. Without the changes here, there's a type error now