Is it possible for VS Code to use node version specified by NVM?
I have 6.9.2 installed locally. Even after switching to another version, from the OS X terminal (no
add runtimeExecutable to your .vscode/launch.json like this
runtimeExecutable
.vscode/launch.json
{ "type": "node", "request": "launch", "name": "App", "program": "${workspaceRoot}/index.js", "runtimeExecutable": "${env:HOME}/.nvm/versions/node/v6.9.2/bin/node" }