This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { readdirSync, statSync } from 'fs' | |
| import { join, basename } from 'path' | |
| // Patterns to ignore (can be extended via args if needed) | |
| const IGNORE_PATTERNS = ['.git', '.claude', 'node_modules', 'dist', '.DS_Store', 'pnpm-lock.yaml'] | |
| // File extensions to ignore | |
| const IGNORE_EXTENSIONS = ['.png', '.csv'] | |
| type TreeNode = { |