From 44ea6af0432f29f7b6dc7381cacc8d7eef74a348 Mon Sep 17 00:00:00 2001 From: Olaf Monien Date: Thu, 12 Feb 2026 11:16:41 +0100 Subject: [PATCH] fix: Remove _libs/** and libs/** from global exclude defaults These are project-specific directories and should be configured per project in .codegraph/config.json, not hardcoded globally. Delphi- specific excludes (__history, __recovery, *.dcu) remain as global defaults since they are analogous to __pycache__ for Python. Co-Authored-By: Claude Opus 4.6 --- src/types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types.ts b/src/types.ts index 6e9d74c..a103d9d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -536,8 +536,6 @@ export const DEFAULT_CONFIG: CodeGraphConfig = { '**/node_modules/**', '**/vendor/**', '**/Pods/**', - '**/_libs/**', - '**/libs/**', // Generic build outputs '**/dist/**',