Skip to content

Instantly share code, notes, and snippets.

@navhaxs
Created April 6, 2020 23:13
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 navhaxs/68c6949c075b80b72f624cbf1a5282a6 to your computer and use it in GitHub Desktop.
Save navhaxs/68c6949c075b80b72f624cbf1a5282a6 to your computer and use it in GitHub Desktop.
A very minimal 'VS Code Debug Launch Configuration' to debug the current javascript file in Node.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug File",
"program": "${file}",
"cwd": "${fileDirname}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment