5edba7dd05
Updates many of the out of date npm packages and brings us up to Node v20 LTS. :D Co-authored-by: chomp <chomp@noreply.dev.sp-tarkov.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/260 Co-authored-by: Refringe <me@refringe.com> Co-committed-by: Refringe <me@refringe.com>
36 lines
919 B
JSON
36 lines
919 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "node",
|
|
"runtimeVersion": "20.11.1",
|
|
"runtimeExecutable": "npm",
|
|
"request": "launch",
|
|
"sourceMaps": true,
|
|
"runtimeArgs": [
|
|
"run",
|
|
"run:debug"
|
|
],
|
|
"outFiles": [
|
|
"!**/node_modules/**"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"name": "Run Vitest Tests",
|
|
"type": "node",
|
|
"runtimeVersion": "20.11.1",
|
|
"runtimeExecutable": "npm",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen"
|
|
}
|
|
]
|
|
}
|