„.vscode/tasks.json“ ändern

This commit is contained in:
2024-02-09 19:11:40 +00:00
parent d67939b43b
commit 050f49077f

8
.vscode/tasks.json vendored
View File

@@ -2,6 +2,14 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "Install Backend Dependencies",
"type": "shell",
"command": "npm install",
"options": {
"cwd": "${workspaceFolder}/backend"
}
},
{
"label": "Start Backend", "label": "Start Backend",
"type": "shell", "type": "shell",
"command": "npx ts-node src/index.ts", "command": "npx ts-node src/index.ts",