launch.json 325 B

1234567891011121314
  1. {
  2. "configurations": [
  3. {
  4. "name": "Electron Main",
  5. "program": "${workspaceFolder}/main.js",
  6. "request": "launch",
  7. "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
  8. "skipFiles": [
  9. "<node_internals>/**"
  10. ],
  11. "type": "node"
  12. }
  13. ]
  14. }