launch.json 299 B

12345678910111213
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug Main Process",
  6. "type": "node",
  7. "request": "launch",
  8. "cwd": "${workspaceRoot}",
  9. "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
  10. "program": "${workspaceRoot}/main.js"
  11. }
  12. ]
  13. }