"Unverified breakpoint" in Visual Studio Code with Chrome Debugger extension
I am trying to debug my Typescript code in Visual Studio Code, using the Chrome Debugger extension, but I am getting the "Unverified breakpoint" message on my breakpoint, and execution does not stop on my breakpoint.
Here is my launch.json file:
{
linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
}
]
}
App Version:
- Visual Studio Code: 1.25.1
- Chrome: 67.0.3396.99
Any other suggestions on how I can solve this issue?
monstertjie_za
- 7.9k
- 10
- 48
- 79
lang-js