Created
February 1, 2025 18:23
-
-
Save felipekm/a57d18a64608c670a4d3b6049b111fc5 to your computer and use it in GitHub Desktop.
VSCode Nodemon debug launcher
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": "Nodemon launch", | |
"runtimeExecutable": "nodemon", | |
"program": "${workspaceFolder}/src/server.js", | |
"restart": true, | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen", | |
"skipFiles": [ | |
"<node_internals>/**" | |
], | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment