I'm trying to debug VS Code project when suddenly (because it was working perfectly just day ago) some of my breakpoints become unreachable:
And list of breakpoints is all grayed-out with information that Breakpoint set but not yet bound.
My package.json and .vscode/launch.json are on same level, my VS Code version info:
But there is some additional trivia to this issue: Setting breakpoints on some file actually works. and they are hit correctly. So for me there is no correlation between kind of file, it's location, function or load time, some files are unable to be handled for Chrome Debugger...
My VS Code run configurations below:
"configurations": [
{
"name": "Launch Chrome against localhost",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4210",
"webRoot": "${workspaceFolder}",
"sourceMaps": true
},
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4210/#",
"webRoot": "${workspaceRoot}"
},
]
I tried as well uninstall/disable/enable chrome debugger, Running it with all other addons disabled. Setting breakpoint and re-running debugger does not take effect as well as deactivate/reactivate all of breakpoints.

