Created
May 12, 2017 18:44
-
-
Save chris-schmitz/84b5ca7ccc291097b2b1a6dea6f615ef to your computer and use it in GitHub Desktop.
VSCode launch config for debugging an electron app
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 Electron", | |
"program": "${workspaceRoot}/electron_base/index.js", | |
"cwd": "${workspaceRoot}", | |
"stopOnEntry": false, | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | |
"runtimeArgs": [ | |
".", "--enable-logging" | |
], | |
"console": "integratedTerminal" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment