microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
.vscode/tasks.json
22lines · modecode
| 1 | { |
| 2 | "version": "0.1.0", |
| 3 | "command": "gulp", |
| 4 | "isShellCommand": true, |
| 5 | "tasks": [ |
| 6 | { |
| 7 | "taskName": "watch", |
| 8 | "isBuildCommand": true, |
| 9 | "isBackground": true, |
| 10 | "problemMatcher": "$gulp-tsc" |
| 11 | }, |
| 12 | { |
| 13 | "taskName": "build", |
| 14 | "isBuildCommand": true, |
| 15 | "problemMatcher": "$gulp-tsc" |
| 16 | }, |
| 17 | { |
| 18 | "taskName": "tslint", |
| 19 | "problemMatcher": "$tslint5" |
| 20 | } |
| 21 | ] |
| 22 | } |
| 23 | |