(profilePath: string, relativePath: string)
| 90 | } |
| 91 | |
| 92 | function resolveProfileSourcePath(profilePath: string, relativePath: string): string { |
| 93 | return normalizeSourcePath( |
| 94 | join(dirname(normalizeSourcePath(profilePath)), relativePath), |
| 95 | ); |
| 96 | } |
| 97 | |
| 98 | function readRequiredSource(sources: Readonly<Record<string, string>>, path: string): string { |
| 99 | const normalized = normalizeSourcePath(path); |
no test coverage detected