webpack/test/configCases/plugins/loader-options-plugin/loader.js

11 lines
246 B
JavaScript

/** @type {import("../../../../").LoaderDefinition<{}, { minimize: boolean, jsfile: boolean }>} */
module.exports = function () {
return (
"module.exports = " +
JSON.stringify({
minimize: this.minimize,
jsfile: this.jsfile
})
);
};