You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
647 B
28 lines
647 B
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Electron: Main",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": ["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"]
|
|
}
|
|
]
|
|
}
|
|
|