@expo/webpack-config
Version:
The default Webpack configuration used to build Expo apps targeting the web.
12 lines (11 loc) • 300 B
TypeScript
import { ProgressPlugin as OriginalProgressPlugin } from 'webpack';
/**
* Fork of https://github.com/clessg/progress-bar-webpack-plugin
* but with TypeScript support.
*
* @category plugins
* @internal
*/
export default class ProgressPlugin extends OriginalProgressPlugin {
constructor();
}