webpack/test/configCases/source-map/namespace-source-path-no-tr.../webpack.config.js

14 lines
203 B
JavaScript
Raw Normal View History

"use strict";
2020-11-07 22:33:24 +08:00
/** @type {import("../../../../").Configuration} */
module.exports = {
node: {
__dirname: false,
__filename: false
},
2020-11-07 23:10:12 +08:00
devtool: "source-map",
optimization: {
minimize: true
}
2020-11-07 22:33:24 +08:00
};