Server/project/.vscode/launch.json

36 lines
919 B
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "node",
"runtimeVersion": "20.11.1",
"runtimeExecutable": "npm",
2023-03-03 16:23:46 +01:00
"request": "launch",
"sourceMaps": true,
"runtimeArgs": [
"run",
"run:debug"
2023-03-03 16:23:46 +01:00
],
"outFiles": [
"!**/node_modules/**"
],
"cwd": "${workspaceFolder}",
"outputCapture": "std"
},
{
"name": "Run Vitest Tests",
2023-03-03 16:23:46 +01:00
"type": "node",
"runtimeVersion": "20.11.1",
"runtimeExecutable": "npm",
2023-03-03 16:23:46 +01:00
"request": "launch",
"runtimeArgs": [
"run",
"test"
2023-03-03 16:23:46 +01:00
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
2023-03-03 16:23:46 +01:00
}
]
}