mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-09 19:28:06 +01:00
20 lines
505 B
JSON
20 lines
505 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Launch Program",
|
||
|
"protocol": "inspector",
|
||
|
"cwd": "${workspaceRoot}",
|
||
|
"program": "${workspaceFolder}/node_modules/ts-node/dist/bin.js",
|
||
|
"args": [
|
||
|
"${workspaceFolder}/src/main.ts",
|
||
|
"login",
|
||
|
"kyle@sdfdf.com",
|
||
|
"mypassword"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|