PowerBI-Cli/.vscode/launch.json

43 строки
875 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}\\bin\\cli-get-workspaces",
"stopOnEntry": false,
"args": [
"-c","<collection>",
"-k","<key>"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"https_proxy": "http://127.0.0.1:8888",
"http_proxy": "http:127.0.0.1:8888",
"NODE_TLS_REJECT_UNAUTHORIZED": "0",
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": true,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}