summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-uncompressed/v3/webpack.config.js
blob: df554beb0d42f199f66ec6e385369152d1c8454b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const path = require("path");
const webpack = require("webpack");

const config = {
  devtool: "sourcemap",
};

if (webpack.version && webpack.version[0] === "4") {
  // Webpack 3, used in sourcemaps-reload-uncompressed, doesn't support mode attribute.
  // Webpack 4, used in sourcemaps-reload-compressed we want production mode in order to compress the sources
  config.mode = "production";
} else {
  // Also Webpack 4 doesn't support the module.loaders attribute
  config.module = {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: "babel-loader",
      },
    ],
  };
}

module.exports = Object.assign({}, config, {
  entry: [path.join(__dirname, "original.js")],
  output: {
    path: __dirname,
    filename: "bundle.js",
  },
});