Closed carlpett closed 3 weeks ago
I've temporarily gotten things to work in the specific project I'm working on right now by hardcoding the node
global setting.
runtimeExecutable
is what the vscode-js-debug
adapter is going to use when launching your target.
The global node
setting is what this package is going to use to run the vscode-js-debug
adapter and generally shouldn't be set because you would have node on your path.
I'm trying to get the node debugger to work when having the node binary not on
PATH
, but installed project-local (we usenvm
to set per-project versions). In the repo vscode-node-debug2 which is linked for docs (which is archived?), this is achieved by settingruntimeExecutable
to the installed path. However, this does not seem to get picked up? I still get an error about not findingnode
inPATH
.Here's the debugger section of my project:
When attempting to start the debugger, this is logged:
What am I doing wrong?