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:
parent
8926e286bb
commit
5bd68b6227
@ -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/**"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user