mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-10 00:59:47 -06:00
50 lines
987 B
JSON
50 lines
987 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"continueOnAttach": true
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to port 5566",
|
|
"port": 5566,
|
|
"continueOnAttach": true,
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to Docker",
|
|
"port": 5566,
|
|
"continueOnAttach": true,
|
|
"remoteRoot": "/opt/cypress",
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "electron",
|
|
"port": 5567
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "dev-debug",
|
|
"port": 5566,
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"dev-debug"
|
|
]
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "dev-debug w/ electron",
|
|
"configurations": ["dev-debug", "electron"]
|
|
}
|
|
]
|
|
}
|