When attempting to include HTML code in a multiline string using backticks within TypeScript, I've noticed that VS Code doesn't offer auto-completion for the HTML tags. Take this example:
@Component({
selector: 'app-property-binding',
template:`
<h1></h1>
`,
styles: [
]
})
In such cases, I find myself manually typing out the header tags as VS Code lacks the auto-completion feature for them.
Is there a way to enable this functionality in VS Code?