1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-24 10:14:52 +02:00
bitwarden-desktop/.vscode/launch.json
2018-02-14 15:34:17 -05:00

19 lines
405 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": [
"."
]
}
]
}