webpack-entries-autodiscovery
Version:
Entries autodiscovery for webpack
13 lines (12 loc) • 431 B
TypeScript
import { DiscoverEntriesConfig } from './discover-entries-config';
export declare class EntriesDiscoverer {
private params;
discoverEntries(params: DiscoverEntriesConfig): Entries;
private discoverEntriesInPath;
private getEntriesGlob;
private validateConfig;
}
export declare type Entries = Record<string, string>;
export declare class EntriesDirDoesntExist extends Error {
constructor(dirName: string);
}