Server/project/.vscode/launch.json

26 lines
732 B
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "node",
"runtimeVersion": "18.15.0",
2023-03-03 16:23:46 +01:00
"request": "launch",
"runtimeExecutable": "npm",
"sourceMaps": true,
"runtimeArgs": [
"run",
"run:debug"
2023-03-03 16:23:46 +01:00
],
"outFiles": [
"!**/node_modules/**"
],
"cwd": "${workspaceFolder}",
"outputCapture": "std"
}
]
}