mirror of https://github.com/webpack/webpack.git
15 lines
264 B
JavaScript
15 lines
264 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
node: {
|
||
|
__dirname: false,
|
||
|
__filename: false
|
||
|
},
|
||
|
optimization: {
|
||
|
concatenateModules: false,
|
||
|
usedExports: true,
|
||
|
providedExports: true,
|
||
|
minimize: false,
|
||
|
mangleExports: false
|
||
|
}
|
||
|
};
|