Static typing in html for angular in Visual Studio

Is there a way to check if html is valid and have some intellisense? I mean, I need something like typescript, but for html. For example, I would like to get compilation errors when I use directives that do not exist. Or scope properties that are not declared (in the case of TS).

update: I mainly need kinds tsx for angular. And it has already been reviewed here https://github.com/Microsoft/TypeScript/issues/6508

+5
source share
1 answer

I highly recommend you use WebStorm, which is smart coding support for JavaScript and compiled language, Node.js, HTML and CSS. One of the best for Angular. It has a free 30-day trial, and you can download it from the link below: https://www.jetbrains.com/webstorm/

0
source

Source: https://habr.com/ru/post/1257964/


All Articles