microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.5.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

.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