mirror of
https://github.com/bitwarden/browser
synced 2026-02-24 00:23:17 +00:00
Co-Authored-By: Isaiah Inuwa <iinuwa@bitwarden.com> Co-Authored-By: Colton Hurst <colton@coltonhurst.com>
31 lines
763 B
JSON
31 lines
763 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Main Process",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}/build",
|
|
"runtimeExecutable": "${workspaceRoot}/../../node_modules/.bin/electron",
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceRoot}/../../node_modules/.bin/electron.cmd"
|
|
},
|
|
"args": [".", "--remote-debugging-port=9223"]
|
|
},
|
|
{
|
|
"name": "Debug Renderer Process",
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"port": 9223,
|
|
"webRoot": "${workspaceFolder}",
|
|
"timeout": 30000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Debug Electron: All",
|
|
"configurations": ["Debug Main Process", "Debug Renderer Process"]
|
|
}
|
|
]
|
|
}
|