Steps to Reproduce:
import x from async; ( or any other project without native types)Could not find a declaration file for module 'async'. '<path>' implicitly has an 'any' type.
Try `npm install @types/async` if it exists or add a new declaration (.d.ts) file containing `declare module 'async';`
The command listed is npm install @types/async but it should actually be npm install --save-dev @types/async as types are only a devDependency.
This is a simple text change, I can raise a PR if someone can point me towards the file throwing the error.
Does this issue occur when all extensions are disabled?: N/A
The quick fix for this runs npm install --save-dev so I think the string just needs to be updated too
I can raise a PR
Thanks!
npm run buildI'm also updating the install commands for node, jQuery, jest and mocha types.
Thanks!
Most helpful comment
The quick fix for this runs
npm install --save-devso I think the string just needs to be updated too