microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/lib/codepush-node-sdk/.vscode/tasks.json
29lines · modecode
| 1 | { |
| 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 |
| 3 | // for the documentation about the tasks.json format |
| 4 | "version": "2.0.0", |
| 5 | "tasks": [ |
| 6 | { |
| 7 | "label": "build-tests", |
| 8 | "command": "${workspaceRoot}/node_modules/typescript/bin/tsc", |
| 9 | "type": "shell", |
| 10 | "group": "build", |
| 11 | "problemMatcher": [ |
| 12 | "$tsc" |
| 13 | ], |
| 14 | "args": [ |
| 15 | "-p", |
| 16 | "tsconfig-test.json" |
| 17 | ] |
| 18 | }, |
| 19 | { |
| 20 | "label": "build", |
| 21 | "type": "gulp", |
| 22 | "task": "build", |
| 23 | "group": { |
| 24 | "kind": "build", |
| 25 | "isDefault": true |
| 26 | } |
| 27 | } |
| 28 | ] |
| 29 | } |