I have several question about vs 2015, reshaper 10 and angular 2.
- It exist any syntax highlighting support for html markup in ts file for visual studio 2015 or in resharper 10?
For example when I use multiline string in Component template.
@Component({
selector: "hello-world",
template: `
<ul>
<li *ngFor="#name of names">Hello {{name}}</li>
</ul>
`
})
When I use ng2 keywords such as #inputName, (click)="add(inputName)" in html file visual studio show errors in markup. Any way how to fix this problem. It’s annoying.
I would like have intellisense support for ng2 in html. I tried find aby resharper plugin but without success.