mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-04-04 18:50:10 +08:00
* Added `search.exclude` to ignore `dist/**` during searches. * Configured `files.readonlyInclude` to lock changes to `dist/**`, `bun.lock`, and `package-lock.json`.
13 lines
246 B
JSON
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
|
|
},
|
|
}
|