Skip to content

Instantly share code, notes, and snippets.

@ashtonmeuser
Created April 11, 2021 17:11
Show Gist options
  • Save ashtonmeuser/4715fe257318ad9404b2fdabe2072bd4 to your computer and use it in GitHub Desktop.
Save ashtonmeuser/4715fe257318ad9404b2fdabe2072bd4 to your computer and use it in GitHub Desktop.
Simple Node debugging configuration for VSC
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment