1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-24 00:23:17 +00:00
Files
browser/apps/desktop/.vscode/launch.json
Anders Åberg 86a5d5607c Beta: Windows Native passkey provider
Co-Authored-By: Isaiah Inuwa <iinuwa@bitwarden.com>
Co-Authored-By: Colton Hurst <colton@coltonhurst.com>
2025-11-11 08:39:40 +01:00

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"]
}
]
}