| 4 | import { removeExtension } from "./filesystem"; |
| 5 | |
| 6 | export interface TryPath { |
| 7 | readonly type: "file" | "extension" | "index" | "package"; |
| 8 | readonly path: string; |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Builds a list of all physical paths to try by: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…