I'm currently immersed in a project that involves Typescript and some of the ES6 features it offers, such as ES6 String Literals like
`Something ${variable} Something else`
.
During my debugging process, I decided to set a breakpoint in my typescript file to step through it using the source panel, which usually works smoothly.
However, I've run into an issue with Chrome Dev Tools not recognizing the end of an ES6 String literal. It highlights all code following the string as red (in the debugger) and prevents me from inspecting variables since Chrome seems to think it's one huge string.
Has anyone else faced this problem before? Have you found a solution or heard if Google plans to address this in Chrome Dev Tools?
EDIT 1:
It seems the Chromium team is currently addressing this issue. Check out the bug report for any updates:
bugs.chromium.org/p/chromium/issues/detail?id=659515
EDIT 2: While the bug has been open for a while, it doesn't appear to be a top priority. If you're experiencing the same problem, visit the chromium link above and provide helpful information by commenting or starring the issue to bring it to the attention of the Dev Tools team.