You can browse and install extensions from within VS Code. Press Ctrl+P
and narrow down the list commands by typing ext install types-autoinstaller
.
Any time you save either package.json or bower.json the typings packages will be installed/uninstalled automatically in the background.
Sample:
When you install a package
npm install --save lodashThis plugin automatically run this command:
npm install --save @types/lodash
To initially install all types of a project, open the Command Palette with F1 and type in Types: Install definitions for all dependencies
, press Enter to select it.
Feel free to submit a pull request if you find any bugs (to see a list of active issues, visit the Issues section). Please make sure all commits are properly documented.
MIT-licensed
** Enjoy! **