| 1234567891011121314151617181920212223242526272829303132 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug Main Process",
- "type": "node",
- "request": "launch",
- "cwd": "${workspaceRoot}",
- "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
- "windows": {
- "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
- },
- "program": "${workspaceRoot}/resources/app/us.main.js",
- "protocol": "legacy"
- },
- {
- "name": "Debug Renderer Process",
- "type": "chrome",
- "request": "launch",
- "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
- "windows": {
- "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
- },
- "runtimeArgs": [
- "${workspaceRoot}/resources/app/main.js",
- "--remote-debugging-port=9222"
- ],
- "webRoot": "${workspaceRoot}"
- }
- ]
- }
|