Add more details to server RPC test cases in static docs
[hiphop-php.git] / hphp / hack.typechecker.code-workspace
blob9b3da6a08ecbb9783ecb3598d7b4c67b2ac9c545
2   /*
3    * TS 2019-12-16 - This file is for UX testing for vs code workspace functionality.
4    * For questions please contact Ted Spence or Omar Tawfik
5    */
6         "folders": [
7                 {
8                         "name": "hack",
9                         "uri": "./hack"
10                 }
11   ],
12   "tasks": {
13     "version": "2.0.0",
14     "tasks": [
15       {
16         "label": "Build hack",
17         "command": "./hack/scripts/facebook/build-hh.sh",
18         "args": [],
19         "group": "build",
20         "presentation": {
21           "reveal": "always",
22           "panel": "new"
23         },
24         "problemMatcher": "$tslint5"
25       },
26       {
27         "label": "Switch hack to buck-out",
28         "command": "hh",
29         "args": ["--switch", "buck-out"],
30         "group": "test",
31         "presentation": {
32           "reveal": "always",
33           "panel": "new"
34         },
35         "problemMatcher": "$tslint5"
36       },
37       {
38         "label": "Switch hack to dev",
39         "command": "hh",
40         "args": ["--switch", "dev"],
41         "group": "test",
42         "presentation": {
43           "reveal": "always",
44           "panel": "new"
45         },
46         "problemMatcher": "$tslint5"
47       },
48       {
49         "label": "Switch hack to prod",
50         "command": "hh",
51         "args": ["--switch", "prod"],
52         "group": "test",
53         "presentation": {
54           "reveal": "always",
55           "panel": "new"
56         },
57         "problemMatcher": "$tslint5"
58       },
59       {
60         "label": "Kill all running HH instances",
61         "command": "./hack/scripts/facebook/kill-hh.sh",
62         "args": [],
63         "group": "test",
64         "presentation": {
65           "reveal": "always",
66           "panel": "new"
67         },
68         "problemMatcher": "$tslint5"
69       },
70       {
71         "label": "Run hack integration tests",
72         "command": "buck",
73         "args": ["test", "//hphp/hack/test/integration/..."],
74         "group": "test",
75         "presentation": {
76           "reveal": "always",
77           "panel": "new"
78         },
79         "problemMatcher": "$tslint5"
80       }
81     ]
82   },
83   "settings": {
84     "facebook.repositories": ["fbcode"],
85     "facebook.server": "reserved"
86   }