From 5bd68b62274fa6882d9a3011a76824f5a9359546 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 19 Dec 2024 15:45:34 -0500 Subject: [PATCH] Workspace Terminal Change This changes the terminal that is used when the VSCode debugger is launched to use the actual built-in terminal, not the debug console terminal (it sucks). --- project/Server.code-workspace | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/project/Server.code-workspace b/project/Server.code-workspace index d08a659d..f40b2914 100644 --- a/project/Server.code-workspace +++ b/project/Server.code-workspace @@ -31,10 +31,17 @@ "runtimeExecutable": "npm", "request": "launch", "sourceMaps": true, - "runtimeArgs": ["run", "run:debug"], - "outFiles": ["!**/node_modules/**"], + "runtimeArgs": [ + "run", + "run:debug" + ], + "outFiles": [ + "!**/node_modules/**" + ], "cwd": "${workspaceFolder}", - "outputCapture": "std" + "outputCapture": "std", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" }, { "name": "Run Vitest Tests", @@ -42,9 +49,18 @@ "runtimeVersion": "20.11.1", "runtimeExecutable": "npm", "request": "launch", - "runtimeArgs": ["run", "test"], + "runtimeArgs": [ + "run", + "test" + ], "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen" + "internalConsoleOptions": "neverOpen", + "cwd": "${workspaceFolder}", + "sourceMaps": true, + "outputCapture": "std", + "outFiles": [ + "!**/node_modules/**" + ] } ] }