We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8400a commit ccde836Copy full SHA for ccde836
1 file changed
src/platform/workspaceChunkSearch/node/workspaceFileIndex.ts
@@ -153,16 +153,40 @@ const EXCLUDE_EXTENSIONS = new Set([
153
]);
154
155
const EXCLUDED_FOLDERS = [
156
- 'node_modules',
157
- 'venv',
158
'out',
159
'dist',
160
'.git',
+ '.svn',
+ '.hg',
161
'.yarn',
162
- '.npm',
163
- '.venv',
+
164
'foo.asar',
165
'.vscode-test',
166
+ // JS/TS build outputs
167
+ 'node_modules',
168
+ 'bower_components',
169
+ '.next',
170
+ '.npm',
171
+ '.nuxt',
172
+ '.turbo',
173
+ '.parcel-cache',
174
175
+ // Python
176
+ '__pycache__',
177
+ 'venv',
178
+ '.venv',
179
180
+ '.mypy_cache',
181
+ '.pytest_cache',
182
+ '.ruff_cache',
183
+ '.tox',
184
185
+ // Other
186
+ 'Pods',
187
+ '.gradle',
188
+ '.terraform',
189
+ '.nyc_output',
190
];
191
192
const EXCLUDED_FILES = [
0 commit comments