WXL
4 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
node_modules/webpack/lib/node/NodeTemplatePlugin.js
@@ -11,20 +11,23 @@
/** @typedef {import("../Compiler")} Compiler */
/**
 * Represents the node template plugin runtime component.
 * @typedef {object} NodeTemplatePluginOptions
 * @property {boolean=} asyncChunkLoading enable async chunk loading
 */
class NodeTemplatePlugin {
   /**
    * Creates an instance of NodeTemplatePlugin.
    * @param {NodeTemplatePluginOptions=} options options object
    */
   constructor(options = {}) {
      /** @type {NodeTemplatePluginOptions} */
      this._options = options;
   }
   /**
    * Apply the plugin
    * Applies the plugin by registering its hooks on the compiler.
    * @param {Compiler} compiler the compiler instance
    * @returns {void}
    */