| 7 | * Function that can match a path |
| 8 | */ |
| 9 | export interface MatchPath { |
| 10 | ( |
| 11 | requestedModule: string, |
| 12 | readJson?: Filesystem.ReadJsonSync, |
| 13 | fileExists?: (name: string) => boolean, |
| 14 | extensions?: ReadonlyArray<string> |
| 15 | ): string | undefined; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Creates a function that can resolve paths according to tsconfig paths property. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…