Skip to content

Instantly share code, notes, and snippets.

@adityawibisana
Last active April 21, 2019 13:44
Show Gist options
  • Save adityawibisana/de371c706cf32e0f222183c26bde64e8 to your computer and use it in GitHub Desktop.
Save adityawibisana/de371c706cf32e0f222183c26bde64e8 to your computer and use it in GitHub Desktop.
VSCode launch.json for Node v4
{
"version": "0.2.0",
"configurations": [
{
"name": "WSL fix remoteRoot",
"type": "node",
"request": "attach",
"address": "localhost",
"port": 5858,
"sourceMaps": false,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/mnt/d/your/project/dir"
/** to run this project, type "node debug app.js". After that, hit the play button (F5). **/
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment