-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathcocalc.code-workspace
85 lines (85 loc) · 1.4 KB
/
cocalc.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
{
"folders": [
{
"name": "util",
"path": "packages/util"
},
{
"name": "sync",
"path": "packages/sync"
},
{
"name": "static",
"path": "packages/static"
},
{
"name": "project",
"path": "packages/project"
},
{
"name": "server",
"path": "packages/server"
},
{
"name": "next",
"path": "packages/next"
},
{
"name": "frontend",
"path": "packages/frontend"
},
{
"name": "hub",
"path": "packages/hub"
},
{
"name": "database",
"path": "packages/database"
},
{
"name": "cdn",
"path": "packages/cdn"
},
{
"name": "backend",
"path": "packages/backend"
},
{
"name": "assets",
"path": "packages/assets"
},
{
"path": "packages/sync-client"
},
{
"path": "packages/jupyter"
},
{
"path": "packages/compute"
},
{
"path": "packages/terminal"
},
{
"path": "packages/comm"
},
{
"path": "packages/api-client"
}
],
"settings": {
"search.followSymlinks": false,
"jest.disabledWorkspaceFolders": [
"compute",
"sync-client",
"comm",
"api-client"
],
"jest.autoRun": "off",
"files.exclude": {
"dist": true,
"node_modules": true
},
"prettier.trailingComma": "all"
}
}