import { Configuration } from 'webpack'; import { ExtendedBuildBuilderOptions } from './build'; /** * This entry-point is called by nrwl's builder, just before it calls out to webpack. * It allows us to customise the webpack build, while building on top of everything that * the nrwl building is already doing. * * We trigger this by setting options.webpackConfig to the path of this file in the builder. * */ declare const _default: (configFromNrwlNodeBuilder: Configuration, options: { options: ExtendedBuildBuilderOptions; configuration: string; }) => any; export = _default;