Open
Description
// these should be fine
const x = `hello world`;
const x = `hello world` as const;
let x = `hello ${foobar} world`;
// these are not allowed
const x = tpl`hello world`;
const x = `hello ${foobar} world`; // if foobar is a specific string literal type, x will be a merger of these strings.
const x = `hello ${foobar} world` as const;
However right now all are disallowed.