1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00
bitwarden-browser/.vscode/launch.json

19 lines
432 B
JSON
Raw Normal View History

2018-05-12 21:12:28 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"protocol": "inspector",
"cwd": "${workspaceRoot}",
2018-05-15 16:50:06 +02:00
"program": "${workspaceFolder}/build/bw.js",
2018-05-12 21:12:28 +02:00
"args": [
2018-05-15 16:50:06 +02:00
"login",
"sdfsd@sdfdf.com",
"ddddddd"
]
2018-05-12 21:12:28 +02:00
}
]
}