Skip to content

Instantly share code, notes, and snippets.

@whazzmaster
Created October 5, 2017 14:12
Show Gist options
  • Save whazzmaster/c3481bfbee5e2daf739a41b60226e908 to your computer and use it in GitHub Desktop.
Save whazzmaster/c3481bfbee5e2daf739a41b60226e908 to your computer and use it in GitHub Desktop.
ES6 Debugging: launch.json
{
"version": "0.2.0",
"configurations": [{
"type": "node",
"request": "launch",
"name": "Debug Increment Command",
"cwd": "${workspaceRoot}",
"sourceMaps": true,
"preLaunchTask": "npm: build",
"program": "${workspaceRoot}/dist/bin/app",
"args": [
"increment",
"3"
],
"stopOnEntry": false,
"localRoot": "${workspaceRoot}",
"outFiles": [
"${workspaceRoot}/dist/**"
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment