| 12 | } |
| 13 | |
| 14 | export interface FileEntry { |
| 15 | path: string; |
| 16 | relativePath: string; |
| 17 | isDirectory: boolean; |
| 18 | depth: number; |
| 19 | } |
| 20 | |
| 21 | const ALWAYS_IGNORE = new Set([ |
| 22 | "node_modules", |
nothing calls this directly
no outgoing calls
no test coverage detected