From b73b7df1290d0fe66ca8b8060743711a327af622 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Sun, 13 Aug 2017 20:23:11 -0700 Subject: [PATCH] :tada: Change vscode launch configs to 'protocol: inspector' :fireworks: --- .vscode/launch.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 58840c5eddfdb..8c42acc60379d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,7 @@ "type": "node", "request": "attach", "name": "Attach to Extension Host", - "protocol": "legacy", + "protocol": "inspector", "port": 5870, "restart": true, "outFiles": [ @@ -28,7 +28,7 @@ "type": "node", "request": "attach", "name": "Attach to Shared Process", - "protocol": "legacy", + "protocol": "inspector", "port": 5871, "outFiles": [ "${workspaceRoot}/out/**/*.js" @@ -37,7 +37,7 @@ { "type": "node", "request": "attach", - "protocol": "legacy", + "protocol": "inspector", "name": "Attach to Search process", "port": 7890, "outFiles": [ @@ -48,7 +48,7 @@ "type": "node", "request": "attach", "name": "Attach to CLI Process", - "protocol": "legacy", + "protocol": "inspector", "port": 5874, "outFiles": [ "${workspaceRoot}/out/**/*.js" @@ -58,7 +58,7 @@ "type": "node", "request": "attach", "name": "Attach to Main Process", - "protocol": "legacy", + "protocol": "inspector", "port": 5875, "outFiles": [ "${workspaceRoot}/out/**/*.js" @@ -127,7 +127,7 @@ }, "urlFilter": "*index.html*", "runtimeArgs": [ - "--debug=5875" + "--inspect=5875" ], "webRoot": "${workspaceRoot}" }, @@ -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": {