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:
co-authored by
Claude Opus 4.6
parent
f5d9a0efe5
commit
f414ed7e3e
@@ -536,6 +536,8 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
|
|||||||
'**/node_modules/**',
|
'**/node_modules/**',
|
||||||
'**/vendor/**',
|
'**/vendor/**',
|
||||||
'**/Pods/**',
|
'**/Pods/**',
|
||||||
|
'**/_libs/**',
|
||||||
|
'**/libs/**',
|
||||||
|
|
||||||
// Generic build outputs
|
// Generic build outputs
|
||||||
'**/dist/**',
|
'**/dist/**',
|
||||||
@@ -630,6 +632,11 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
|
|||||||
'**/Carthage/Build/**',
|
'**/Carthage/Build/**',
|
||||||
'**/SourcePackages/**',
|
'**/SourcePackages/**',
|
||||||
|
|
||||||
|
// Delphi/Pascal
|
||||||
|
'**/__history/**',
|
||||||
|
'**/__recovery/**',
|
||||||
|
'**/*.dcu',
|
||||||
|
|
||||||
// PHP
|
// PHP
|
||||||
'**/.composer/**',
|
'**/.composer/**',
|
||||||
'**/storage/framework/**',
|
'**/storage/framework/**',
|
||||||
|
|||||||
Reference in New Issue
Block a user