Skip to content

Instantly share code, notes, and snippets.

@timfish
Created January 15, 2017 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timfish/d88fc03a221514bfe5de811eff8861c4 to your computer and use it in GitHub Desktop.
Save timfish/d88fc03a221514bfe5de811eff8861c4 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "chrome",
"request": "launch",
"port": 9222,
"sourceMaps": true,
"internalConsoleOptions": "openOnSessionStart",
"console": "integratedTerminal",
"outFiles": [
"./www/dist/**/*.js"
],
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
},
"runtimeArgs": [
"${workspaceRoot}/www/",
"--dev",
"--remote-debugging-port=9222"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment