Browse Source

fix vscode debugging config

master
jeffvli 4 years ago
parent
commit
68ea1c3bfd
  1. 8
      .vscode/launch.json

8
.vscode/launch.json

@ -1,3 +1,4 @@
// See https://github.com/electron-react-boilerplate/electron-react-boilerplate/issues/2757 for details
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
@ -7,7 +8,12 @@
"request": "launch", "request": "launch",
"protocol": "inspector", "protocol": "inspector",
"runtimeExecutable": "yarn", "runtimeExecutable": "yarn",
"runtimeArgs": ["start:main --inspect=5858 --remote-debugging-port=9223"], "runtimeArgs": [
"start:main",
"--inspect=5858",
"--remote-debugging-port=9223"
],
"preLaunchTask": "Start Webpack Dev" "preLaunchTask": "Start Webpack Dev"
}, },
{ {

Loading…
Cancel
Save