„.vscode/tasks.json“ ändern
This commit is contained in:
16
.vscode/tasks.json
vendored
16
.vscode/tasks.json
vendored
@@ -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": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user