bitwarden-estensione-browser/.vscode/launch.json

25 lines
657 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}",
"program": "${workspaceFolder}/node_modules/ts-node/dist/bin.js",
"args": [
2018-05-14 17:59:34 +02:00
"-r",
"tsconfig-paths/register",
2018-05-12 21:12:28 +02:00
"${workspaceFolder}/src/main.ts",
2018-05-14 20:54:19 +02:00
"get",
"item",
"f6709d4f-69c3-4957-93e4-a82d01259693"
2018-05-14 17:59:34 +02:00
],
"env": {
"NODE_ENV": "debug"
},
2018-05-12 21:12:28 +02:00
}
]
}