(path: string, servePath?: string)
| 320 | } |
| 321 | |
| 322 | getModuleResolver(path: string, servePath?: string): (specifier: string) => Promise<string> { |
| 323 | return getModuleResolver(this.root, path, servePath, (p) => this.getSourceFileHash(p)); |
| 324 | } |
| 325 | |
| 326 | resolveImportPath(path: string): string { |
| 327 | return resolveImportPath(this.root, path, (p) => this.getSourceFileHash(p)); |
no test coverage detected