Reading the release notes, Angular should have the best intellisense in VS2015 .
After a simple upgrade from VS2015 to VS2015RTM, it seems to me that there is no intellisense in script blocks in Razor views and in js files.
After the βnew new web application (ASP.NET 5 Preview Template)β, I added a dependency on Angular via bower.json
{ "name": "ASP.NET", "private": true, "dependencies": { "bootstrap": "3.0.0", "bootstrap-touch-carousel": "0.8.0", "hammer.js": "2.0.4", "jquery": "2.1.4", "jquery-validation": "1.11.1", "jquery-validation-unobtrusive": "3.2.2", "angular": "~1.4.3" } }
and I see that TaskRunner has successfully completed the gulp task and generated the lib \ angular folder.

I am referencing Angular in the layout, but I am not getting intellisense.

Do I need to install something or is it a manual copy of this intellisense file? If this does not look like an enhancement to intellisense vs2015, I believe it could also be done on VS2013?
UPDATE
I duplicated the advice from the attached link and put the angular.intellisense.js file as in
Program Files (x86) \ Microsoft Visual Studio 12.0 \ JavaScript \ Links
folder and
Program Files (x86) \ Microsoft Visual Studio 14.0 \ JavaScript \ Links
Folder
Now I have Intellisense running in VS2013, but not in VS2015.
Also tried adding
to the _references.js file, but there is still no Angular intellisense.