hyperchat/.vscode/launch.json

28 lines
769 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Attach",
"port": 19999,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/electron",
"runtimeExecutable": "${workspaceFolder}/electron/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/electron/node_modules/.bin/electron.cmd"
},
"args": [
"."
],
"outputCapture": "std"
}
]
}