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