2024-09-18 08:27:46 -07:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2024-11-04 11:06:36 -08:00
|
|
|
/** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
|
|
|
|
/** @typedef {import("./Compiler")} Compiler */
|
|
|
|
|
2024-09-18 08:27:46 -07:00
|
|
|
class OptionsApply {
|
2024-11-04 11:06:36 -08:00
|
|
|
/**
|
|
|
|
* @param {WebpackOptions} options options object
|
|
|
|
* @param {Compiler} compiler compiler object
|
|
|
|
* @returns {WebpackOptions} options object
|
|
|
|
*/
|
|
|
|
process(options, compiler) {
|
|
|
|
return options;
|
|
|
|
}
|
2024-09-18 08:27:46 -07:00
|
|
|
}
|
2024-11-04 11:06:36 -08:00
|
|
|
|
2024-09-18 08:27:46 -07:00
|
|
|
module.exports = OptionsApply;
|