diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..08fb164 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,27 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Web Dev", + "type": "shell", + "command": "npm", + "args": ["run", "dev"], + "options": { + "cwd": "${workspaceRoot}/packages/web" + } + }, + { + "label": "Server Dev", + "type": "shell", + "command": "npm", + "args": ["run", "dev"], + "options": { + "cwd": "${workspaceRoot}/packages/server" + } + }, + { + "label": "Dev", + "dependsOn": ["Server Dev", "Web Dev"] + } + ] +}