mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-12 13:50:42 -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:
parent
8926e286bb
commit
5bd68b6227
@ -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/**"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user