Skip to content

Commit c509494

Browse files
committed
Also ignore various build cache folders
These need to be unambiguously ignorable so paths like `target`, `build`, `cache`, etc… should not go here
1 parent 9eecddc commit c509494

File tree

1 file changed

+7
-0
lines changed
  • packages/tailwindcss-language-service/src/util

1 file changed

+7
-0
lines changed

packages/tailwindcss-language-service/src/util/state.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,13 @@ export function getDefaultTailwindSettings(): Settings {
224224
// Python Virtual Environments
225225
'**/.venv/**',
226226
'**/venv/**',
227+
228+
// Build caches
229+
'**/.next/**',
230+
'**/.parcel-cache/**',
231+
'**/.svelte-kit/**',
232+
'**/.turbo/**',
233+
'**/__pycache__/**',
227234
],
228235
},
229236
experimental: {

0 commit comments

Comments
 (0)