(pathToResolve: string, program: ts.Program)
| 9 | import { EmitFile, ProcessedFile } from "./utils"; |
| 10 | |
| 11 | const createModulePath = (pathToResolve: string, program: ts.Program) => |
| 12 | escapeString(formatPathToLuaPath(trimExtension(getEmitPathRelativeToOutDir(pathToResolve, program)))); |
| 13 | |
| 14 | // Override `require` to read from ____modules table. |
| 15 | function requireOverride(options: CompilerOptions) { |
no test coverage detected