„.vscode/tasks.json“ ändern

This commit is contained in:
2024-04-20 11:09:25 +00:00
parent c92909a83b
commit 435b740ea2

16
.vscode/tasks.json vendored
View File

@@ -36,7 +36,6 @@
"label": "Start Frontend",
"type": "shell",
"command": "npm start",
"dependsOn": ["Start Backend"],
"options": { "cwd": "${workspaceFolder}/frontend" },
"isBackground": true,
"problemMatcher": {
@@ -67,15 +66,14 @@
"problemMatcher": []
},
{
"label": "Start Backend for Frontend",
"label": "only Frontend",
"type": "shell",
"command": "npx ts-node src/index.ts",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"command": "npm start",
"dependsOn": ["Start Backend"],
"options": { "cwd": "${workspaceFolder}/frontend" },
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"owner": "javascript",
"pattern": {
"regexp": "^.*$",
"file": 1,
@@ -85,10 +83,10 @@
"background": {
"activeOnStart": true,
"beginsPattern": "^.*$",
"endsPattern": "^Server läuft auf Port.*$"
}
"endsPattern": "Compiled successfully"
}
}
},
],
"inputs": [
{