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