Skip to content

Instantly share code, notes, and snippets.

@andrerpena
Created April 16, 2018 04:48
Show Gist options
  • Save andrerpena/fd6b1775c7a257218eb70bad01ff7066 to your computer and use it in GitHub Desktop.
Save andrerpena/fd6b1775c7a257218eb70bad01ff7066 to your computer and use it in GitHub Desktop.
VS Code launch.json for debugging the start:debug:ts NPM script
{
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"start:debug:ts"
],
"port": 9229
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment