ts-template-literal
totally forked from vscode-sql-template-literal
Syntax highlighting for code like:
const code = js`function hello(name) { return 'hello ' + name }`;
// OR
const code = ts`function hello(name) { return 'hello ' + name }`;
// OR
const code = /* js */ `function hello(name) { return 'hello ' + name }`;
// OR
const code = /* ts */ `function hello(name) { return 'hello ' + name }`;
| |