VSCode task to attach to both Main and Renderer processes simultaneously

Summary: The task for attaching to both Main and Renderer processes makes debugging in certain scenarios easier.

Reviewed By: passy

Differential Revision: D19813764

fbshipit-source-id: d81e07e5fb135b5bb904a3f6532347eca1a9bbb1
This commit is contained in:
Anton Nikolaev
2020-02-10 06:25:21 -08:00
committed by Facebook Github Bot
parent 6712182fd1
commit 29258c3168

11
.vscode/launch.json vendored
View File

@@ -22,5 +22,14 @@
"program": "${workspaceFolder}/node_modules/.bin/jest", "program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["--runInBand", "${relativeFile}"] "args": ["--runInBand", "${relativeFile}"]
} }
] ],
"compounds": [
{
"name": "Attach to All",
"configurations": [
"Attach to Running Main",
"Attach to Running Renderer"
]
}
]
} }