„.vscode/launch.json“ ändern

This commit is contained in:
2024-04-20 06:53:23 +00:00
parent 579d38719f
commit eb0cb22edd

19
.vscode/launch.json vendored
View File

@@ -4,7 +4,17 @@
{
"type": "node",
"request": "launch",
"name": "Backend starten",
"name": "Debug Jest Tests",
"program": "${workspaceRoot}/backend/node_modules/jest/bin/jest",
"args": ["--runInBand"],
"cwd": "${workspaceRoot}/backend",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Debug Backend",
"skipFiles": [
"<node_internals>/**",
"node_modules/**"
@@ -43,6 +53,11 @@
"skipFiles": ["node_modules/**"],
"runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
}
],
"compounds": [
{
"name": "Debug Frontend and Backend",
"configurations": ["Debug Backend", "Debug Frontend"]
}
]
}