1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-06 04:23:19 +00:00

command structure. debugging

This commit is contained in:
Kyle Spearrin
2018-05-12 15:12:28 -04:00
parent 4a0fa7945a
commit bb54e2a381
6 changed files with 135 additions and 6 deletions

19
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"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"
]
}
]
}