perf: Add Delphi-specific exclude patterns to defaults

Add _libs/**, libs/**, __history/**, __recovery/**, and *.dcu to
default exclude list. Delphi projects store external dependencies
in _libs/ or libs/ (often as Git submodules) and these should not
be indexed — same as node_modules for JS projects.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Olaf Monien
2026-02-12 00:40:56 +01:00
co-authored by Claude Opus 4.6
parent f5d9a0efe5
commit f414ed7e3e
+7
View File
@@ -536,6 +536,8 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
'**/node_modules/**',
'**/vendor/**',
'**/Pods/**',
'**/_libs/**',
'**/libs/**',
// Generic build outputs
'**/dist/**',
@@ -630,6 +632,11 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
'**/Carthage/Build/**',
'**/SourcePackages/**',
// Delphi/Pascal
'**/__history/**',
'**/__recovery/**',
'**/*.dcu',
// PHP
'**/.composer/**',
'**/storage/framework/**',