We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I have deno code with @deno-types reference for @types/node, these are added as dependencies, but desired is to add as devDependencies e.g.
@deno-types
@types/node
// @deno-types="npm:@types/node" import { createWriteStream, readFileSync } from "node:fs"
package.json generated content
"dependencies": { "@types/node": "*" }
Using references with @deno-types is the recommended way how to use type save code from node/npm, I think.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I have deno code with
@deno-types
reference for@types/node
, these are added as dependencies, but desired is to add as devDependenciese.g.
package.json generated content
Using references with
@deno-types
is the recommended way how to use type save code from node/npm, I think.The text was updated successfully, but these errors were encountered: