Skip to content

Instantly share code, notes, and snippets.

@iradofurioso
Created December 10, 2021 18:36
Show Gist options
  • Save iradofurioso/b256e65f2585df5df279ce9700d23988 to your computer and use it in GitHub Desktop.
Save iradofurioso/b256e65f2585df5df279ce9700d23988 to your computer and use it in GitHub Desktop.
Add nodemon to Visual Code
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "nodemon",
"runtimeExecutable": "${workspaceFolder}/node_modules/nodemon/bin/nodemon.js",
"program": "${workspaceFolder}/app.js",
"restart": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment