webpack/test/configCases/dll-plugin-entry/2-error-non-entry/webpack.config.js

19 lines
383 B
JavaScript

"use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
optimization: {
moduleIds: "named"
},
plugins: [
new webpack.DllReferencePlugin({
manifest: require("../../../js/config/dll-plugin-entry/manifest0.json"),
name: "../0-create-dll/dll.js",
scope: "dll",
sourceType: "commonjs2"
})
]
};