microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.13.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/tasks.json

54lines · modecode

1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "compile-smoke-tests",
6 "type": "process",
7 "command": ["./node_modules/.bin/tsc"],
8 "windows": {
9 "command": ".\\node_modules\\.bin\\tsc.cmd",
10 },
11 "options": {
12 "cwd": "${workspaceRoot}/test/smoke"
13 },
14 "presentation": {
15 "echo": true,
16 "reveal": "silent",
17 "focus": false,
18 "panel": "shared",
19 "showReuseMessage": false,
20 "clear": false
21 },
22 },
23 {
24 "label": "tslint-smoke-tests",
25 "type": "process",
26 "command": ["./node_modules/.bin/tslint"],
27 "windows": {
28 "command": ".\\node_modules\\.bin\\tslint.cmd",
29 },
30 "args": [
31 "-c",
32 "tslint.json",
33 "--project",
34 "tsconfig.json",
35 "'src/**'",
36 ],
37 "options": {
38 "cwd": "${workspaceRoot}/test/smoke"
39 },
40 "presentation": {
41 "echo": true,
42 "reveal": "silent",
43 "focus": false,
44 "panel": "shared",
45 "showReuseMessage": false,
46 "clear": false
47 }
48 },
49 {
50 "label": "Build Smoke Tests",
51 "dependsOn": ["tslint-smoke-tests", "compile-smoke-tests"]
52 }
53 ],
54}
55