Skip to content

Instantly share code, notes, and snippets.

@alfredmyers
Last active May 1, 2019 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfredmyers/cb205cb4fd6879b6892685874b92a042 to your computer and use it in GitHub Desktop.
Save alfredmyers/cb205cb4fd6879b6892685874b92a042 to your computer and use it in GitHub Desktop.
launch.json for debugging Node.js in VSCode started from WSL
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\entry-point.js",
"useWSL": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment