microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.3.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.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}