microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/.vscode/tasks.json
29lines · modecode
| 1 | { |
| 2 | "version": "2.0.0", |
| 3 | "tasks": [ |
| 4 | { |
| 5 | "type": "shell", |
| 6 | "command": "npm run build -- --vscode", |
| 7 | "group": { |
| 8 | "kind": "build", |
| 9 | "isDefault": true |
| 10 | }, |
| 11 | "problemMatcher": [ |
| 12 | "$tsc" |
| 13 | ], |
| 14 | "label": "npm run build", |
| 15 | "detail": "npm run build" |
| 16 | }, |
| 17 | { |
| 18 | "type": "shell", |
| 19 | "command": "pnpm i", |
| 20 | "isBackground": true, |
| 21 | "group": { |
| 22 | "kind": "build", |
| 23 | "isDefault": false |
| 24 | }, |
| 25 | "label": "pnpm install", |
| 26 | "detail": "pnpm install" |
| 27 | } |
| 28 | ] |
| 29 | } |
| 30 | |