OptionsApply.js 523 B

12345678910111213141516171819202122
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. /** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
  7. /** @typedef {import("./Compiler")} Compiler */
  8. class OptionsApply {
  9. /**
  10. * @param {WebpackOptions} options options object
  11. * @param {Compiler} compiler compiler object
  12. * @returns {WebpackOptions} options object
  13. */
  14. process(options, compiler) {
  15. return options;
  16. }
  17. }
  18. module.exports = OptionsApply;