Skip to content

Commit

Permalink
Update debug launch configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Jan 19, 2019
1 parent 2b14f7d commit d57ff09
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .vscode/launch.json
Expand Up @@ -6,31 +6,32 @@
"configurations": [
{
"name": "Node (launch)",
"runtimeVersion": "9.8.0",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/index.js",
"args": [
""
],
"program": "${workspaceFolder}/index.js",
// "args": [
// ""
// ],
"env": {
// "KUBECONFIG": "/var/run/kubernetes/admin.kubeconfig"
},
"cwd": "${workspaceRoot}",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
},
{
"name": "Node (attach)",
"type": "node",
"request": "attach",
"port": 9229
"processId": "${command:PickProcess}"
},
{
// Serve the 'docs' directory to http://localhost:8080
"name": "Chrome (launch)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080/index.html",
"webRoot": "${workspaceRoot}/",
"webRoot": "${workspaceFolder}/",
"sourceMaps": true
},
{
Expand All @@ -41,7 +42,7 @@
"request": "attach",
"port": 9222,
"url": "http://localhost:8080/index.html",
"webRoot": "${workspaceRoot}",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"trace": true
}
Expand Down

0 comments on commit d57ff09

Please sign in to comment.