From c466733871431b5af490e9b8debffda8fac5957d Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 17 Jul 2023 17:27:25 +0200 Subject: [PATCH] Added `Ghost core + Admin` launch config - this runs the equivalent of `yarn dev` and will just launch Ghost core (+ TS) + Admin, saving all of the other supplementary apps being launched too --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5189ab97e7..3e00ee2b0b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,18 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Ghost core + Admin", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/.github/scripts/dev.js", + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + }, { "type": "node", "request": "launch",