Skip to content

Instantly share code, notes, and snippets.

@alisonailea
Created November 27, 2019 19:20
Show Gist options
  • Save alisonailea/25e0eecea813c819807a23b01b784ae1 to your computer and use it in GitHub Desktop.
Save alisonailea/25e0eecea813c819807a23b01b784ae1 to your computer and use it in GitHub Desktop.
VSCode Debugger - Launch NPM Script
{
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"runtimeExecutable": "npm",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"runtimeArgs": [
"run",
"build:dev"
],
"port": 9229
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment