(
distPath: string,
sourceRoot: string = process.cwd()
)
| 158 | * Create a source path mapper instance |
| 159 | */ |
| 160 | export function createSourcePathMapper( |
| 161 | distPath: string, |
| 162 | sourceRoot: string = process.cwd() |
| 163 | ): SourcePathMapper { |
| 164 | return new SourcePathMapper(distPath, sourceRoot); |
| 165 | } |
| 166 |
no outgoing calls
no test coverage detected
searching dependent graphs…