@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
10 lines • 341 B
TypeScript
//#region src/utils/getPackageJsonPath.d.ts
declare const isESModule: boolean;
type PackageJsonPathCache = {
packageJsonPath: string;
baseDir: string;
};
declare const getPackageJsonPath: (startDir?: string) => PackageJsonPathCache;
//#endregion
export { getPackageJsonPath, isESModule };
//# sourceMappingURL=getPackageJsonPath.d.ts.map