Update VSCode settings: add file nesting patterns and exclude specific directories

This commit is contained in:
Chris Toph 2025-03-22 20:30:41 -04:00
parent 75d8afdd1e
commit 895f24d576

11
.vscode/settings.json vendored
View file

@ -1,3 +1,12 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"explorer.fileNesting.patterns": {
"flake.nix": "*.nix, flake.lock, .envrc",
"package.json": " pnpm-lock.yaml, tsconfig.json, .gitignore"
},
"files.exclude": {
".direnv": true,
"node_modules": true,
"@girs": true
}
}