I\'m starting writing AngularJS app using TypeScript. I have this simple module command:
(() => { angular .module(\'app\', []); })(); <
(() => { angular .module(\'app\', []); })();
For me inside of VisualStudio I used part of Augusto's suggested answer and simply did:
npm install --save @types/angular
and it worked like a charm.