2023-03-03 16:23:46 +01:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Debug",
|
|
|
|
"type": "node",
|
2023-12-15 15:06:02 +01:00
|
|
|
"runtimeVersion": "20.10.0",
|
2023-10-30 22:34:05 +01:00
|
|
|
"runtimeExecutable": "npm",
|
2023-03-03 16:23:46 +01:00
|
|
|
"request": "launch",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"runtimeArgs": [
|
|
|
|
"run",
|
2023-10-14 11:10:10 +02:00
|
|
|
"run:debug"
|
2023-03-03 16:23:46 +01:00
|
|
|
],
|
|
|
|
"outFiles": [
|
|
|
|
"!**/node_modules/**"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
2023-10-30 22:34:05 +01:00
|
|
|
"name": "Run Vitest Tests",
|
2023-03-03 16:23:46 +01:00
|
|
|
"type": "node",
|
2023-12-15 15:06:02 +01:00
|
|
|
"runtimeVersion": "20.10.0",
|
2023-11-05 20:40:15 +01:00
|
|
|
"runtimeExecutable": "npm",
|
2023-03-03 16:23:46 +01:00
|
|
|
"request": "launch",
|
2023-11-05 20:40:15 +01:00
|
|
|
"runtimeArgs": [
|
|
|
|
"run",
|
|
|
|
"test"
|
2023-03-03 16:23:46 +01:00
|
|
|
],
|
|
|
|
"console": "integratedTerminal",
|
2023-10-30 22:34:05 +01:00
|
|
|
"internalConsoleOptions": "neverOpen"
|
2023-03-03 16:23:46 +01:00
|
|
|
}
|
|
|
|
]
|
2023-10-26 20:12:19 +02:00
|
|
|
}
|