-
Notifications
You must be signed in to change notification settings - Fork 0
/
wsx.code-workspace
49 lines (49 loc) · 991 Bytes
/
wsx.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
{
"folders": [
{
"name": "root",
"path": "./"
},
{
"name": "@wsx/server",
"path": "libs/server"
},
{
"name": "@wsx/client",
"path": "libs/client"
},
{
"name": "@wsx/shared",
"path": "libs/shared"
},
{
"name": "examples",
"path": "examples"
}
],
"settings": {
// format
"editor.formatOnSave": true,
"[javascript][typescript][javascriptreact][typescriptreact][json][jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit"
},
// imports
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
// file nesting
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": true,
// readonly
"files.readonlyInclude": {
"node_modules/**/": true
},
"files.readonlyExclude": {
"node_modules": true
},
// typescript
"typescript.tsdk": "root/node_modules/typescript/lib"
}
}