0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-12 16:50:43 -05:00

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).
This commit is contained in:
Refringe 2024-12-19 15:45:34 -05:00
parent 8926e286bb
commit 5bd68b6227
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -31,10 +31,17 @@
"runtimeExecutable": "npm", "runtimeExecutable": "npm",
"request": "launch", "request": "launch",
"sourceMaps": true, "sourceMaps": true,
"runtimeArgs": ["run", "run:debug"], "runtimeArgs": [
"outFiles": ["!**/node_modules/**"], "run",
"run:debug"
],
"outFiles": [
"!**/node_modules/**"
],
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"outputCapture": "std" "outputCapture": "std",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}, },
{ {
"name": "Run Vitest Tests", "name": "Run Vitest Tests",
@ -42,9 +49,18 @@
"runtimeVersion": "20.11.1", "runtimeVersion": "20.11.1",
"runtimeExecutable": "npm", "runtimeExecutable": "npm",
"request": "launch", "request": "launch",
"runtimeArgs": ["run", "test"], "runtimeArgs": [
"run",
"test"
],
"console": "integratedTerminal", "console": "integratedTerminal",
"internalConsoleOptions": "neverOpen" "internalConsoleOptions": "neverOpen",
"cwd": "${workspaceFolder}",
"sourceMaps": true,
"outputCapture": "std",
"outFiles": [
"!**/node_modules/**"
]
} }
] ]
} }