diff --git a/.vscode/launch.json b/.vscode/launch.json index 3e00ee2b0b..698afa15d2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,21 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Backend", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/.github/scripts/dev.js", + "args": [ + "--ghost" + ], + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + }, { "type": "node", "request": "launch",