| | |
| | | "use strict"; |
| | | |
| | | /** @typedef {import("./config/defaults").WebpackOptionsNormalizedWithDefaults} WebpackOptions */ |
| | | /** @typedef {import("./config/normalization").WebpackOptionsInterception} WebpackOptionsInterception */ |
| | | /** @typedef {import("./Compiler")} Compiler */ |
| | | |
| | | class OptionsApply { |
| | | /** |
| | | * Returns options object. |
| | | * @param {WebpackOptions} options options object |
| | | * @param {Compiler} compiler compiler object |
| | | * @param {WebpackOptionsInterception=} interception intercepted options |
| | | * @returns {WebpackOptions} options object |
| | | */ |
| | | process(options, compiler) { |
| | | process(options, compiler, interception) { |
| | | return options; |
| | | } |
| | | } |