-
Notifications
You must be signed in to change notification settings - Fork 653
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
"@types/node" module is declared in dependencies. #1955
Comments
The |
@murgatroid99 , I'm not sure I understand. Can you please give us an actual example where this dependency is required? I have been using |
It's not used at runtime. It is used when users of |
Well, I see that there is also |
Not according to the official
|
@murgatroid99 this installs Do you need to re-export This is highly debated though, see microsoft/types-publisher#81. But I think for something like @node/types it'd be ok to leave that out as anyone interested in typings and using node should have that. |
This. And basically, it is not possible to code anything in TypeScript that depends on one of node.js library without these types, so there is not even need to tell people to install |
Problem description
In the grpc-js package, "@types/node" module is declared in dependencies.
Wouldn't it be right to move "@types/node" module from "dependencies" to "devDependencies" in the grpc-js package?
The text was updated successfully, but these errors were encountered: