webpack/test/configCases/source-map/source-map-with-profiling-p.../webpack.config.js

26 lines
454 B
JavaScript

"use strict";
const os = require("os");
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
node: {
__dirname: false,
__filename: false
},
entry: {
bundle0: ["./index.js"]
},
output: {
filename: "[name].js"
},
plugins: [
new webpack.debug.ProfilingPlugin({
outputPath: path.join(os.tmpdir(), "events.json")
})
],
devtool: "source-map"
};