Skip to content

Commit 3ddc79e

Browse files
committed
chore: Update VSCode settings
1 parent 60843de commit 3ddc79e

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

.vscode/settings.json

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,32 @@
11
{
2+
"search.exclude": {
3+
"node_modules": true,
4+
"dist": true,
5+
".git": true,
6+
".eslintcache": true
7+
},
8+
"files.exclude": {
9+
"**/.DS_Store": true
10+
},
11+
"explorer.fileNesting.enabled": true,
12+
"explorer.fileNesting.patterns": {
13+
"*.ts": "$(capture).*",
14+
".env": ".env.*",
15+
".env.*": ".env.${capture}.local",
16+
"package.json": "bun.lockb, package-lock.json, pnpm-lock.yaml, yarn.lock, .npmrc",
17+
"tsconfig.json": "tsconfig.*.json, tsconfig.tsbuildinfo",
18+
"tsconfig.tsbuildinfo": "tsconfig.*.tsbuildinfo"
19+
},
220
"editor.defaultFormatter": "esbenp.prettier-vscode",
321
"editor.formatOnSave": true,
422
"editor.codeActionsOnSave": {
523
"source.fixAll.eslint": "explicit"
624
},
7-
"javascript.preferences.importModuleSpecifier": "shortest",
8-
"javascript.preferences.importModuleSpecifierEnding": "js",
9-
"typescript.preferences.importModuleSpecifier": "shortest",
10-
"typescript.preferences.importModuleSpecifierEnding": "js"
25+
"typescript.tsdk": "./node_modules/typescript/lib",
26+
"eslint.validate": [
27+
"javascript",
28+
"javascriptreact",
29+
"typescript",
30+
"typescriptreact"
31+
]
1132
}

0 commit comments

Comments
 (0)