Not sure if I have any questions, but pretty much after installing the plugin you need to install AngularJs TypeScript definitions, reference them in your code.
I use tsd to control the definition. This is pretty much a conversation (oh my God ... another dependency manager ...). You can install it with npm install tsd -g , then in the project folder initialize tsd repo
tsd init
And install the definitions of AngularJs
tsd query angular --action install --save
And finally, reference them in the source code by adding a link directive (tsd will install each definition separately, and tsd.d.ts combines all installed dependencies, so you donβt need to inflate files with links):
/// <reference path="typings/tsd.d.ts" />
What is it. Now you can get the code hint:

Now, have you done all this and still havenβt worked?
Caio cunha
source share