Skip to content

Instantly share code, notes, and snippets.

@mgs96
Last active February 9, 2026 03:13
Show Gist options
  • Select an option

  • Save mgs96/47e42cd6d53ac39643cc9294f0927158 to your computer and use it in GitHub Desktop.

Select an option

Save mgs96/47e42cd6d53ac39643cc9294f0927158 to your computer and use it in GitHub Desktop.
vscode nodejs launch config
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to node.js debug port",
"request": "attach",
"port": 9229,
"type": "node",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/**/node_modules/**/*.js",
],
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart",
"restart": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment