Skip to content

Instantly share code, notes, and snippets.

@jakehemmerle
Last active January 29, 2021 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakehemmerle/9a612f3c56805876ad70f6eb7667b9c0 to your computer and use it in GitHub Desktop.
Save jakehemmerle/9a612f3c56805876ad70f6eb7667b9c0 to your computer and use it in GitHub Desktop.
vscode node debug
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch via yarn",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "yarn",
"runtimeArgs": ["start"]
}
]
}
@jakehemmerle
Copy link
Author

yarn start is:
nodemon --inspect src/index.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment