I have project structure as shown below. Through command line we use make run to start the execution but need to debug by using breakpoints in it. So how to setup in vsc.
Below is my launch.json file
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/make",
"args": [
"run"
]
}
]
}
This doesn't work but how to setup.

