Adding compound debug configuration (#3238)

* Adding compound debug configuration

* remove trailing commas from JSON


Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
This commit is contained in:
Zach Bloomquist
2019-05-01 00:01:10 -04:00
committed by Jennifer Shehane
parent db0a65ee7f
commit da61de8479

21
.vscode/launch.json vendored
View File

@@ -14,7 +14,7 @@
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test-debug-package",
"test-debug-package"
],
"args": [
"${file}"
@@ -26,7 +26,24 @@
"type": "node",
"request": "attach",
"name": "electron",
"port": 5567,
"port": 5567
},
{
"type": "node",
"request": "launch",
"name": "dev-debug",
"port": 5566,
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev-debug"
]
}
],
"compounds": [
{
"name": "dev-debug w/ electron",
"configurations": ["dev-debug", "electron"]
}
]
}