2022-12-19 15:59:14 -08:00
|
|
|
{
|
2023-07-01 19:10:05 -07:00
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Electron: Main",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"runtimeExecutable": "npm",
|
|
|
|
"runtimeArgs": ["run start:main --inspect=5858 --remote-debugging-port=9223"],
|
|
|
|
"preLaunchTask": "Start Webpack Dev"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Electron: Renderer",
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "attach",
|
|
|
|
"port": 9223,
|
|
|
|
"webRoot": "${workspaceFolder}",
|
|
|
|
"timeout": 15000
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"compounds": [
|
|
|
|
{
|
|
|
|
"name": "Electron: All",
|
|
|
|
"configurations": ["Electron: Main", "Electron: Renderer"]
|
|
|
|
}
|
|
|
|
]
|
2022-12-19 15:59:14 -08:00
|
|
|
}
|