6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import path from "path";
|
|
import { baseDir } from "./constants";
|
|
|
|
export function getLiteParseRunnerPath(): string {
|
|
return path.join(baseDir, "resources", "document-extraction", "liteparse_runner.mjs");
|
|
}
|