fix: exclude dist from search and lock changes to some files

* Added `search.exclude` to ignore `dist/**` during searches.
* Configured `files.readonlyInclude` to lock changes to `dist/**`, `bun.lock`, and `package-lock.json`.
This commit is contained in:
Okinea Dev 2025-02-05 07:51:46 +02:00
parent 2a182f9b07
commit 7ab4b27c6c
No known key found for this signature in database
GPG Key ID: 07944BC5E01E7B43

11
.vscode/settings.json vendored
View File

@ -1,3 +1,12 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
"search.exclude": {
"dist/**": true
},
// Lock changes to these files
"files.readonlyInclude": {
"dist/**": true,
"bun.lock": true,
"package-lock.json": true
},
}