I\'m starting writing AngularJS app using TypeScript. I have this simple module command:
(() => { angular .module(\'app\', []); })(); <
(() => { angular .module(\'app\', []); })();
Make sure that in the tsconfig.json the filesGlob points and exposed the typings file:
tsconfig.json
filesGlob
"filesGlob": ["typings.d.ts" ]