(file: string, program: ts.Program)
| 178 | } |
| 179 | |
| 180 | export function getEmitPath(file: string, program: ts.Program): string { |
| 181 | const relativeOutputPath = getEmitPathRelativeToOutDir(file, program); |
| 182 | const outDir = getEmitOutDir(program); |
| 183 | |
| 184 | return path.join(outDir, relativeOutputPath); |
| 185 | } |
| 186 | |
| 187 | export function getEmitPathRelativeToOutDir(fileName: string, program: ts.Program): string { |
| 188 | const sourceDir = getSourceDir(program); |
no test coverage detected