mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
36 lines
966 B
JSON
36 lines
966 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Electron Main Process",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
|
},
|
|
"args": [".", "--inspect=5858", "--remote-debugging-port=9223"],
|
|
"outputCapture": "std",
|
|
"console": "integratedTerminal",
|
|
"preLaunchTask": "Start Development Server"
|
|
},
|
|
{
|
|
"name": "Debug Electron Renderer Process",
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"port": 9223,
|
|
"webRoot": "${workspaceFolder}/src",
|
|
"timeout": 30000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Debug Electron (Main + Renderer)",
|
|
"configurations": [
|
|
"Debug Electron Main Process",
|
|
"Debug Electron Renderer Process"
|
|
]
|
|
}
|
|
]
|
|
}
|