setup-bun/.vscode/settings.json
Okinea Dev 7ab4b27c6c
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`.
2025-02-05 07:51:46 +02:00

13 lines
246 B
JSON

{
"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
},
}