Created
November 29, 2025 21:51
-
-
Save catnipan/9414f91cbe97ebfa69b82895fdc0aab1 to your computer and use it in GitHub Desktop.
vscode node.js launch debug current file
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": [ | |
| { | |
| "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