Add osx + linux launch configs to debug vscode from vscode

This commit is contained in:
Rob Lourens 2016-09-02 17:15:21 -07:00
parent e87f1d91ab
commit 6dff3f61be

10
.vscode/launch.json vendored
View file

@ -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
},
{