Unverified breakpoint (Breakpoint is set but not yet bound)

I solved the problem by updating some software:

  • VS Code: 1.37.1
  • Chrome: 69.0.3497.128
  • Node.js: 10.11.0
  • V8: 6.9.427.31

For me was problem in another. When you are added launch.json, you can see webRoot variable that has a value ${workspaceFolder} by default. Lets check what does it mean in this source

${workspaceFolder} - the path of the folder opened in VS Code

and in my case angular project was inside folder of another project and when i tried to debug i get breakpoint is set but not yet bound message.

Note: **angular** folder not opened as root folder

And if you will open your angular project in VSCode explorer as root folder, your breakpoints will work.

enter image description here

Or if you don't want to open separate folder in VS Code explorer, you can specify in launch.json path to angular folder, like: ${workspaceFolder}/folder/folder/...

After this changes your debug should work.