„.vscode/launch.json“ ändern

This commit is contained in:
2024-04-20 11:09:11 +00:00
parent 02dcbf0192
commit c92909a83b

17
.vscode/launch.json vendored
View File

@@ -1,6 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "[Compound] Debug Frontend without Backend",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend/src",
"preLaunchTask": "Start Frontend",
"postDebugTask": "Terminate All Tasks",
"sourceMaps": true,
"skipFiles": ["node_modules/**"],
"runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
},
{
"type": "node",
"request": "launch",
@@ -47,7 +60,7 @@
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend/src",
"preLaunchTask": "Start Frontend",
"preLaunchTask": "only Frontend",
"postDebugTask": "Terminate All Tasks",
"sourceMaps": true,
"skipFiles": ["node_modules/**"],
@@ -57,7 +70,7 @@
"compounds": [
{
"name": "Debug Frontend and Backend",
"configurations": ["Debug Backend", "Debug Frontend"]
"configurations": ["Debug Backend", "[Compound] Debug Frontend without Backend"]
}
]
}