Last active
February 9, 2026 03:13
-
-
Save mgs96/47e42cd6d53ac39643cc9294f0927158 to your computer and use it in GitHub Desktop.
vscode nodejs launch config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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