(path: string)
| 19 | } from './types.js' |
| 20 | |
| 21 | function convertDotFilesAndPaths(path: string) { |
| 22 | return path |
| 23 | .split(sep) |
| 24 | .map((segment) => segment.replace(/^_dot_/, '.')) |
| 25 | .join(sep) |
| 26 | } |
| 27 | |
| 28 | function normalizeSourceExtension(target: string, typescript: boolean) { |
| 29 | if (!typescript) { |
no test coverage detected