-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhack.code-workspace
More file actions
48 lines (48 loc) · 1.11 KB
/
hack.code-workspace
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"folders": [
{
"name": "Configs (Root)",
"path": "."
},
{
"name": "server",
"path": "server"
},
{
"name": "tcp-server",
"path": "tcp-server"
},
{
"name": "web",
"path": "web-client"
},
{
"name": "mobile",
"path": "mobile",
},
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
"server/**/*": true,
"web/**/*": true,
"mobile/**/*": true,
},
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
},
"go.useLanguageServer": true,
},
"extensions": {
"recommendations": [
"msjsdiag.debugger-for-chrome",
"ms-azuretools.vscode-docker",
"ms-vscode.vscode-typescript-tslint-plugin",
"mhutchie.git-graph"
]
},
"go.alternateTools": {}
}