You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
523 B

3 months ago
  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;