Skip to content

Instantly share code, notes, and snippets.

@felipekm
Created February 1, 2025 18:23
Show Gist options
  • Save felipekm/a57d18a64608c670a4d3b6049b111fc5 to your computer and use it in GitHub Desktop.
Save felipekm/a57d18a64608c670a4d3b6049b111fc5 to your computer and use it in GitHub Desktop.
VSCode Nodemon debug launcher
{
"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