webpack-entries-autodiscovery
Version:
Entries autodiscovery for webpack
10 lines (9 loc) • 338 B
TypeScript
import { DiscoverEntriesParams } from "./discover-entries-params";
export declare class DiscoverEntriesConfig {
readonly basePath: string;
readonly entriesDirName: string;
readonly entryFilename: string;
readonly entryExtensions: string[];
constructor(params?: DiscoverEntriesParams);
get entriesPath(): string;
}