
See the parens on line 6?
I did the following workaround in my settings.json to fix it
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"meta.embedded.line.js meta.brace.square.js",
"meta.embedded.line.js meta.brace.round.js"
],
"settings": {
"foreground": "#eceff4"
}
}
]
}
}