{ "version": "2.0.0", "tasks": [ { "label": "npm: install vscode deps", "type": "shell", "command": "pnpm", "args": ["install"], "options": { "cwd": "${workspaceFolder}/editors/vscode" }, "problemMatcher": [] }, { "label": "npm: watch vscode ext", "type": "shell", "command": "pnpm", "args": ["run", "watch"], "options": { "cwd": "${workspaceFolder}/editors/vscode" }, "dependsOn": "npm: install vscode deps", "problemMatcher": "$ts-webpack-watch", "isBackground": true, "presentation": { "reveal": "never", "group": "watchers" } }, { "label": "npm: package vscode ext", "type": "shell", "command": "pnpm", "args": ["run", "package"], "options": { "cwd": "${workspaceFolder}/editors/vscode" }, "dependsOn": "npm: install vscode deps", "problemMatcher": [] } ] }