-
Notifications
You must be signed in to change notification settings - Fork 33
/
glsp.theia.code-workspace
170 lines (170 loc) · 5.62 KB
/
glsp.theia.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"folders": [
{
"name": "glsp",
"path": "."
},
{
"name": "glsp-client",
"path": "../glsp-client"
},
{
"name": "glsp-theia-integration",
"path": "../glsp-theia-integration"
},
{
"name": "glsp-server-node",
"path": "../glsp-server-node"
}
],
"settings": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"search.exclude": {
"**/node_modules": true,
"**/lib": true
},
"task.autoDetect": "off",
"typescript.tsdk": "node_modules/typescript/lib",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"extensions": {
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build all",
"type": "shell",
"detail": "Build all packages (Client, protocol, Theia backend, and workflow example)",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": false,
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
},
"command": "echo 😎 Finished building all packages",
"isBackground": true,
"problemMatcher": [],
"dependsOrder": "sequence",
"dependsOn": ["Build glsp-client", "Build glsp-theia-integration"]
},
{
"label": "Build glsp-client",
"detail": "Build client packages",
"type": "shell",
"group": "build",
"presentation": {
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
},
"options": {
"cwd": "${workspaceFolder}/../glsp-client"
},
"command": "yarn",
"problemMatcher": ["$tsc", "$eslint-stylish"]
},
{
"label": "Build glsp-theia-integration",
"detail": "Build glsp-theia-integration packages",
"type": "shell",
"group": "build",
"presentation": {
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
},
"options": {
"cwd": "${workspaceFolder}/../glsp-theia-integration"
},
"command": "yarn",
"problemMatcher": ["$tsc", "$eslint-stylish"]
},
{
"label": "Watch all",
"detail": "Watch all client packages, Theia backend, and workflow example",
"type": "shell",
"group": "none",
"presentation": {
"echo": false,
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
},
"command": "echo",
"problemMatcher": [],
"dependsOrder": "parallel",
"dependsOn": ["Watch glsp-client", "Watch glsp-theia-integration"]
},
{
"label": "Watch glsp-client",
"type": "shell",
"group": "none",
"options": {
"cwd": "${workspaceFolder}/../glsp-client"
},
"presentation": {
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
},
"command": "yarn watch",
"problemMatcher": ["$tsc-watch"]
},
{
"label": "Watch glsp-theia-integration",
"type": "shell",
"group": "none",
"options": {
"cwd": "${workspaceFolder}/../glsp-theia-integration"
},
"presentation": {
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
},
"command": "yarn watch",
"problemMatcher": ["$tsc-watch"]
}
]
}
}