I currently have a range of imports in my project, such as:
import {Field, reduxForm, FormSection, formValueSelector} from 'redux-form';
My goal is to treat the redux-form imports as an external library so that they do not get included in the build, similar to how it's done with Jquery:
externals: {
jquery: 'jQuery'
}
The main question here revolves around making multiple imports from the same library external without having to explicitly list them all out in Webpack configuration.