I'm using webpack to bundle my angular app.
One of the bundled files includes all the models required by the app, the models are defined using constructor functions.
Webpack, through it's UglifyJS plugin, mangles my constructor function names which results in different complications.
I want to prevent webpack from mangling function names only on this specific asset.
Is there any way to achieve this?