{ "version": "2.0.0", "tasks": [ { "label": "启动Client", "type": "shell", "command": "npm", "args": ["run", "dev"], "options": { "cwd": "${workspaceFolder}/packages/ui/certd-client" }, "group": { "kind": "build", "isDefault": true }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared" } }, { "label": "启动Server", "type": "shell", "command": "npm", "args": ["run", "dev"], "options": { "cwd": "${workspaceFolder}/packages/ui/certd-server" }, "group": { "kind": "build", "isDefault": true }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared" } }, { "label": "同时启动Client和Server", "dependsOn": ["启动Client", "启动Server"], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [] } ] }