UNPKG

@scalar/build-tooling

Version:

Build tooling and helpers

15 lines 563 B
/** Search for ALL index.ts files in the repo and export them as nested exports */ export declare function findEntryPoints({ allowCss }?: { allowCss?: boolean; }): Promise<string[]>; /** * For a series of imports we add package.json exports to enable nested typescript definitions * and path nested imports * * ex. import { foo } from '@scalar/some-package/foo-domain' */ export declare function addPackageFileExports({ allowCss, entries, }: { allowCss?: boolean; entries: string | string[]; }): Promise<void>; //# sourceMappingURL=entry.d.ts.map