My project uses a Grunt compiler along with jshint for validation.
When working with multiline strings, I typically use the following syntax:
string = '`
Hello
`';
However, upon compiling, I encounter the following error:
[L328:C33] W112: Unclosed string.
string = '`
Could it be that the Grunt compiler does not support ECMA6 syntax?