mochapack
Version:
mocha cli with webpack support
8 lines (7 loc) • 302 B
TypeScript
import { Configuration } from 'webpack';
export type WebpackConfigMode = 'production' | 'development' | 'none';
export type WebpackConfig = Configuration | ((...args: any[]) => Promise<Configuration>);
export type ModuleDescriptor = string | string[] | {
module: string;
register: Function;
};