-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathdust.code-workspace
More file actions
95 lines (95 loc) · 2.83 KB
/
Copy pathdust.code-workspace
File metadata and controls
95 lines (95 loc) · 2.83 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
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
{
"folders": [
{
"path": "."
}
],
"settings": {
// TypeScript Native (tsgo) settings
// Enable TypeScript Native - requires "TypeScript (Native Preview)" extension
"typescript.experimental.useTsgo": true,
// TypeScript preferences (work with both tsserver and tsgo)
"typescript.preferences.useAliasesForRenames": true,
"typescript.preferences.includePackageJsonAutoImports": "off",
"typescript.preferences.useLabelDetailsInCompletion": true,
"typescript.disableAutomaticTypeAcquisition": true,
// Hide build artifacts + rarely-opened packages (formerly omitted from multi-root)
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/out": true,
"**/target": true,
"**/.next": true,
"**/workers-build": true,
"**/storybook-static": true,
"dev/docker-volumes": true,
"cli": true,
"core": true,
"design_docs": true,
"dockerfiles": true,
"egress-proxy": true,
"marketing": true,
"preview-proxy": true,
"prodbox": true,
"sandbox": true,
"scripts": false,
"temporal": true,
"tools": true,
"x": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/out": true,
"**/target": true,
"**/.next": true,
"**/workers-build": true,
"**/storybook-static": true,
"dev/docker-volumes": true
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/out/**": true,
"**/target/**": true,
"**/.next/**": true,
"**/workers-build/**": true,
"**/storybook-static/**": true,
"**/dev/docker-volumes/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true
},
"files.autoSave": "onFocusChange",
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
// Single-root layout: the Biome extension resolves the config against "/"
// instead of the workspace folder, so point it at the file explicitly.
"biome.configurationPath": "biome.editor.json",
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"js/ts.tsdk.path": "node_modules/@typescript/native-preview"
}
}