Created
October 5, 2017 14:12
-
-
Save whazzmaster/c3481bfbee5e2daf739a41b60226e908 to your computer and use it in GitHub Desktop.
ES6 Debugging: launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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