-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwizardsofodd.code-workspace
More file actions
55 lines (53 loc) · 1.42 KB
/
Copy pathwizardsofodd.code-workspace
File metadata and controls
55 lines (53 loc) · 1.42 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
{
"folders": [
{
"name": "🧙 wizardsofodd",
"path": "."
}
],
"settings": {
// ── files / search ──
"files.exclude": {
"**/.DS_Store": true,
"**/.wrangler": true,
"**/node_modules": true,
"**/dist": true
},
"search.exclude": {
"**/node_modules": true,
"**/.wrangler": true,
"**/dist": true,
"**/package-lock.json": true,
"public/portraits/**": true,
"public/*.webp": true,
"src/db/generated/**": true,
"migrations/**": true
},
"files.associations": {
"wrangler.jsonc": "jsonc",
"metaobjects.config.ts": "typescript",
".dev.vars": "dotenv",
"*.meta.json": "jsonc"
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.rulers": [100],
// ── TypeScript: use the workspace's installed tsc, not VS Code's bundled ──
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.tsc.autoDetect": "off",
"typescript.preferences.importModuleSpecifier": "relative",
// ── Vitest extension ──
"vitest.commandLine": "npx vitest"
},
"extensions": {
"recommendations": [
"vitest.explorer",
"cloudflare.vscode-cloudflare-workers",
"tamasfe.even-better-toml",
"editorconfig.editorconfig",
"yzhang.markdown-all-in-one",
"redhat.vscode-yaml",
"anthropic.claude-code"
]
}
}