keycloak_theme/src/bin/tools/getProjectRoot.ts

20 lines
466 B
TypeScript
Raw Normal View History

2021-02-28 18:40:57 +01:00
import * as fs from "fs";
import * as path from "path";
function getProjectRootRec(dirPath: string): string {
if (fs.existsSync(path.join(dirPath, "tsconfig.json"))) {
2021-02-28 18:40:57 +01:00
return dirPath;
}
return getProjectRootRec(path.join(dirPath, ".."));
}
let result: string | undefined = undefined;
export function getProjectRoot(): string {
if (result !== undefined) {
return result;
}
return (result = getProjectRootRec(__dirname));
}