(source: string)
| 74 | } |
| 75 | |
| 76 | private normalizeSource(source: string): string | null { |
| 77 | // Keep all imports except relative paths (we track those separately) |
| 78 | if (source.startsWith('.')) return null; |
| 79 | return source; |
| 80 | } |
| 81 | |
| 82 | private toRelativePath(fullPath: string): string { |
| 83 | // Take last 4 path segments for readability |
no outgoing calls
no test coverage detected