Skip to content

Instantly share code, notes, and snippets.

@catnipan
Created November 29, 2025 21:51
Show Gist options
  • Select an option

  • Save catnipan/9414f91cbe97ebfa69b82895fdc0aab1 to your computer and use it in GitHub Desktop.

Select an option

Save catnipan/9414f91cbe97ebfa69b82895fdc0aab1 to your computer and use it in GitHub Desktop.
vscode node.js launch debug current file
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}",
"cwd": "${fileDirname}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment