UNPKG

@builder.io/dev-tools

Version:

Builder.io Visual CMS Devtools

7 lines (6 loc) 553 B
import type { DevToolsSys, PackageJSON } from "../types"; export declare function hasTsconfig(sys: DevToolsSys): Promise<boolean>; export declare function findBuilderRegistry(sys: DevToolsSys, defaultFolder: string): Promise<string>; export declare function findPackageJson(sys: DevToolsSys, dir: string): Promise<PackageJSON | null>; export declare function findUpNodeModules(sys: DevToolsSys, p: string): Promise<string>; export declare function recursiveFindDir(sys: DevToolsSys, dir: string, findDirectoryName: string): Promise<string | undefined>;