Upgrading from angularjs.TypeScript.DefinitelyTyped 2.1.6 to 3.1.2 removed accessibility of the static angular variable I was using for module declaration files.
The following now gets an error that the symbol angular cannot be properly resolved.
angular
.module("someModule")....
Resharper provides an option to import the variable from an external module, but this does not work.
Was the exposure of a global angular variable in earlier versions an error? Was it not intended to be used in the way my project has used it?