From 6dff3f61be3c8f99bac8e9ba9a0aecef51b4dbbb Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 2 Sep 2016 17:15:21 -0700 Subject: [PATCH] Add osx + linux launch configs to debug vscode from vscode --- .vscode/launch.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4c29e129839..9e3f5826579 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -73,7 +73,15 @@ "name": "Launch VSCode", "type": "chrome", "request": "launch", - "runtimeExecutable": "${workspaceRoot}/scripts/code.bat", + "windows": { + "runtimeExecutable": "${workspaceRoot}/scripts/code.bat" + }, + "osx": { + "runtimeExecutable": "${workspaceRoot}/scripts/code.sh" + }, + "linux": { + "runtimeExecutable": "${workspaceRoot}/scripts/code.sh" + }, "sourceMaps": true }, { -- GitLab