UNPKG

mochapack

Version:
8 lines (7 loc) 302 B
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; };