-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjrfs.code-workspace
79 lines (79 loc) · 1.71 KB
/
jrfs.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
{
"folders": [
{
"name": "jrfs",
"path": "./"
},
{
"path": "docs"
},
{
"name": "core",
"path": "packages/core"
},
{
"name": "idb",
"path": "packages/idb"
},
{
"name": "node",
"path": "packages/node"
},
{
"name": "typebox",
"path": "packages/typebox"
},
{
"name": "web",
"path": "packages/web"
},
{
"name": "ws",
"path": "packages/ws"
},
{
"name": "labs/demo-app",
"path": "labs/demo-app"
},
{
"name": "labs/demo-server",
"path": "labs/demo-server"
},
{
"name": "labs/demo-shared",
"path": "labs/demo-shared"
},
{
"name": "labs/designer-files",
"path": "labs/designer-files"
},
],
// Settings to apply when VS Code is started with this `.code-workspace`
// file. Each of the workspace folders above can also have their own
// settings in a `.vscode/` subdirectory. Those settings are applied
// whether VS Code started with this `code-workspace` file OR if VS Code
// opened the subdirectory directly.
"settings": {
// Files to exclude from the main "./" folder above.
"files.exclude": {
"labs/": true,
"docs/": true,
"packages/": true,
},
"search.exclude": {
"package-lock.json": true,
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.cjs": "${capture}.*",
"*.cts": "${capture}.*",
"*.json": "${capture}.*",
"*.jsx": "${capture}.*",
".env": ".env.*",
"*.js": "${capture}.*",
"*.mdx": "${capture}.*",
"*.ts": "${capture}.*",
"*.tsx": "${capture}.*",
},
},
}