I have a Twilio Plugin which I need to be able to debug in vscode. I have followed the instructions found here to the letter but am still unable to debug. The end result of following these instructions is that, when I click where I want to set a breakpoint, instead of red breakpoint being added, I see a hollow breakpoint. Furthermore, when I hover my mouse over this hollow breakpoint, I see a message which says "Breakpoint set but not yet bound".
My project is a react project which has been set up to use typescript. Any insight into what could be going wrong is greatly appreciated.
Currently, my launch.json file looks like this:
{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/src",
"sourceMapPathOverrides": {
"webpack:///src/": "${webRoot}/"
}
}
]
}