Skip to content

Commit

Permalink
🎉 Change vscode launch configs to 'protocol: inspector' 🎆
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 14, 2017
1 parent 9c86eb3 commit b73b7df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"type": "node",
"request": "attach",
"name": "Attach to Extension Host",
"protocol": "legacy",
"protocol": "inspector",
"port": 5870,
"restart": true,
"outFiles": [
Expand All @@ -28,7 +28,7 @@
"type": "node",
"request": "attach",
"name": "Attach to Shared Process",
"protocol": "legacy",
"protocol": "inspector",
"port": 5871,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
Expand All @@ -37,7 +37,7 @@
{
"type": "node",
"request": "attach",
"protocol": "legacy",
"protocol": "inspector",
"name": "Attach to Search process",
"port": 7890,
"outFiles": [
Expand All @@ -48,7 +48,7 @@
"type": "node",
"request": "attach",
"name": "Attach to CLI Process",
"protocol": "legacy",
"protocol": "inspector",
"port": 5874,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
Expand All @@ -58,7 +58,7 @@
"type": "node",
"request": "attach",
"name": "Attach to Main Process",
"protocol": "legacy",
"protocol": "inspector",
"port": 5875,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
Expand Down Expand Up @@ -127,7 +127,7 @@
},
"urlFilter": "*index.html*",
"runtimeArgs": [
"--debug=5875"
"--inspect=5875"
],
"webRoot": "${workspaceRoot}"
},
Expand All @@ -147,7 +147,7 @@
"type": "node",
"request": "launch",
"name": "Unit Tests",
"protocol": "legacy",
"protocol": "inspector",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"runtimeExecutable": "${workspaceRoot}/.build/electron/Code - OSS.app/Contents/MacOS/Electron",
"windows": {
Expand Down

0 comments on commit b73b7df

Please sign in to comment.