I have some inquiries regarding Visual Studio 2015, Resharper 10, and Angular 2.
- Is there any syntax highlighting support for HTML markup in TypeScript files in Visual Studio 2015 or Resharper 10?
For example, when using a multiline string in a component template.
@Component({
selector: "hello-world",
template: `
<ul>
<li *ngFor="#name of names">Hello {{name}}</li>
</ul>
`
})
When using ng2 keywords like #inputName, (click)="add(inputName)" in an HTML file Visual Studio displays errors in the markup. Is there a way to resolve this issue? It can be quite bothersome.
I am looking for IntelliSense support for Angular 2 in HTML. I have tried searching for a Resharper plugin without any luck.