Reputation: 565
I am unable to view the 'Intellisense' for angular material components in html in visual studio 2017.do I need do any additional configurations/setup?
Upvotes: 0
Views: 2404
Reputation: 1160
Assuming you mean Angular and not AngularJS...
The answer is no you don't need anything else as its not currently possible. It was previously possible when Microsoft implemented intellisense using .ngml files in a previous VS2017 version, but they never then updated it to work on .html files (which is your only option if you are using the Angular CLI to create your app).
I've also tried the (current) preview of Visual Studio 2019 and it's not implemented there either unfortunately, don't know if it will be. There doesn't seem to be much 'push' from people to get Microsoft to (re)implement it apart from a few requests here and there, so I'm guessing either people aren't using VS2017 for their Angular stuff or they are and have just accepted there's no intellisense in the .html files...
Your only options are pretty much the following:-
Here's a few related links that I could find, there doesn't seem to be much...
github issue visual studio developer community
Upvotes: 3