UNPKG

391 BTypeScriptView Raw
1import * as webpack from 'webpack';
2export interface IOptions {
3 packagePath?: string;
4 corePath?: string;
5 staticUrl?: string;
6 mode?: 'development' | 'production';
7 devtool?: string;
8 watchMode?: boolean;
9}
10declare function generateConfig({ packagePath, corePath, staticUrl, mode, devtool, watchMode }?: IOptions): webpack.Configuration[];
11export default generateConfig;