-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeseeks.code-workspace
More file actions
57 lines (52 loc) · 1.23 KB
/
meseeks.code-workspace
File metadata and controls
57 lines (52 loc) · 1.23 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
{
"folders": [
{
"name": "Meseeks",
"path": "./",
},
{
"name": "Private",
"path": "./private",
},
],
"settings": {
// use Oxfmt wherever the Oxc VS Code extension provides formatting
"editor.defaultFormatter": "oxc.oxc-vscode",
// auto-format on save & paste
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
// ignore node_modules on auto-complete
"files.watcherExclude": {
"**/routeTree.gen.ts": true,
},
"files.readonlyInclude": {
"**/routeTree.gen.ts": true,
},
"search.exclude": {
"**/node_modules": true,
"**/routeTree.gen.ts": true,
},
"files.exclude": {
"**/node_modules": true,
"**/.DS_Store": true,
"**/dist": true,
"**/.vercel": true,
"**/.tanstack": true,
"**/.output": true,
"**/.nitro": true,
".opencode": true,
".cursor": true,
".codex": true,
".agents": true,
"AGENTS.md": true,
},
// "terminal.integrated.defaultProfile.linux": "zsh",
// "terminal.integrated.defaultProfile.osx": "zsh",
// "terminal.integrated.shellIntegration.enabled": false
// tsgo
"typescript.experimental.useTsgo": true,
"diffEditor.diffAlgorithm": "advanced",
"diffEditor.experimental.showMoves": true,
"multiDiffEditor.enabled": true,
},
}