I’m encountering with an issue while debugging a Node application.
I can successfully run the application locally using the command yarn run serve:api
. However, when I join a debug session, all breakpoints become unbound.
I have reviewed the launch.json
configuration and it appears to be correct:
{
"version": "0.2.0",
"configurations": [
{
"name": "nest:serve:debug",
"type": "node",
"request": "launch",
"runtimeExecutable": "yarn",
"runtimeArgs": ["run", "serve:api"],
"restart": true
}
]
}