123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const fs = require("fs");
- const path = require("path");
- const {
- JAVASCRIPT_MODULE_TYPE_AUTO,
- JAVASCRIPT_MODULE_TYPE_ESM,
- JAVASCRIPT_MODULE_TYPE_DYNAMIC,
- JSON_MODULE_TYPE,
- WEBASSEMBLY_MODULE_TYPE_ASYNC,
- WEBASSEMBLY_MODULE_TYPE_SYNC,
- ASSET_MODULE_TYPE,
- ASSET_MODULE_TYPE_INLINE,
- ASSET_MODULE_TYPE_RESOURCE,
- CSS_MODULE_TYPE_AUTO,
- CSS_MODULE_TYPE,
- CSS_MODULE_TYPE_MODULE,
- CSS_MODULE_TYPE_GLOBAL
- } = require("../ModuleTypeConstants");
- const Template = require("../Template");
- const { cleverMerge } = require("../util/cleverMerge");
- const {
- getTargetsProperties,
- getTargetProperties,
- getDefaultTarget
- } = require("./target");
- /** @typedef {import("../../declarations/WebpackOptions").CacheOptions} CacheOptions */
- /** @typedef {import("../../declarations/WebpackOptions").CacheOptionsNormalized} CacheOptionsNormalized */
- /** @typedef {import("../../declarations/WebpackOptions").Context} Context */
- /** @typedef {import("../../declarations/WebpackOptions").CssGeneratorOptions} CssGeneratorOptions */
- /** @typedef {import("../../declarations/WebpackOptions").CssParserOptions} CssParserOptions */
- /** @typedef {import("../../declarations/WebpackOptions").EntryDescription} EntryDescription */
- /** @typedef {import("../../declarations/WebpackOptions").EntryNormalized} Entry */
- /** @typedef {import("../../declarations/WebpackOptions").EntryStaticNormalized} EntryStaticNormalized */
- /** @typedef {import("../../declarations/WebpackOptions").Environment} Environment */
- /** @typedef {import("../../declarations/WebpackOptions").Experiments} Experiments */
- /** @typedef {import("../../declarations/WebpackOptions").ExperimentsNormalized} ExperimentsNormalized */
- /** @typedef {import("../../declarations/WebpackOptions").ExternalsPresets} ExternalsPresets */
- /** @typedef {import("../../declarations/WebpackOptions").ExternalsType} ExternalsType */
- /** @typedef {import("../../declarations/WebpackOptions").FileCacheOptions} FileCacheOptions */
- /** @typedef {import("../../declarations/WebpackOptions").GeneratorOptionsByModuleTypeKnown} GeneratorOptionsByModuleTypeKnown */
- /** @typedef {import("../../declarations/WebpackOptions").InfrastructureLogging} InfrastructureLogging */
- /** @typedef {import("../../declarations/WebpackOptions").JavascriptParserOptions} JavascriptParserOptions */
- /** @typedef {import("../../declarations/WebpackOptions").JsonGeneratorOptions} JsonGeneratorOptions */
- /** @typedef {import("../../declarations/WebpackOptions").Library} Library */
- /** @typedef {import("../../declarations/WebpackOptions").LibraryName} LibraryName */
- /** @typedef {import("../../declarations/WebpackOptions").LibraryOptions} LibraryOptions */
- /** @typedef {import("../../declarations/WebpackOptions").LibraryType} LibraryType */
- /** @typedef {import("../../declarations/WebpackOptions").Loader} Loader */
- /** @typedef {import("../../declarations/WebpackOptions").Mode} Mode */
- /** @typedef {import("../../declarations/WebpackOptions").ModuleOptionsNormalized} ModuleOptions */
- /** @typedef {import("../../declarations/WebpackOptions").Node} WebpackNode */
- /** @typedef {import("../../declarations/WebpackOptions").Optimization} Optimization */
- /** @typedef {import("../../declarations/WebpackOptions").OptimizationSplitChunksOptions} OptimizationSplitChunksOptions */
- /** @typedef {import("../../declarations/WebpackOptions").OutputNormalized} Output */
- /** @typedef {import("../../declarations/WebpackOptions").ParserOptionsByModuleTypeKnown} ParserOptionsByModuleTypeKnown */
- /** @typedef {import("../../declarations/WebpackOptions").Performance} Performance */
- /** @typedef {import("../../declarations/WebpackOptions").ResolveOptions} ResolveOptions */
- /** @typedef {import("../../declarations/WebpackOptions").RuleSetRules} RuleSetRules */
- /** @typedef {import("../../declarations/WebpackOptions").SnapshotOptions} SnapshotOptions */
- /** @typedef {import("../../declarations/WebpackOptions").Target} Target */
- /** @typedef {import("../../declarations/WebpackOptions").WebpackOptions} WebpackOptions */
- /** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptionsNormalized */
- /** @typedef {import("../Compiler")} Compiler */
- /** @typedef {import("../Module")} Module */
- /** @typedef {import("./target").PlatformTargetProperties} PlatformTargetProperties */
- /** @typedef {import("./target").TargetProperties} TargetProperties */
- /**
- * @typedef {object} ResolvedOptions
- * @property {PlatformTargetProperties | false} platform - platform target properties
- */
- const NODE_MODULES_REGEXP = /[\\/]node_modules[\\/]/i;
- const DEFAULT_CACHE_NAME = "default";
- const DEFAULTS = {
- // TODO webpack 6 - use xxhash64
- HASH_FUNCTION: "md4"
- };
- /**
- * Sets a constant default value when undefined
- * @template T
- * @template {keyof T} P
- * @param {T} obj an object
- * @param {P} prop a property of this object
- * @param {T[P]} value a default value of the property
- * @returns {void}
- */
- const D = (obj, prop, value) => {
- if (obj[prop] === undefined) {
- obj[prop] = value;
- }
- };
- /**
- * Sets a dynamic default value when undefined, by calling the factory function
- * @template T
- * @template {keyof T} P
- * @param {T} obj an object
- * @param {P} prop a property of this object
- * @param {() => T[P]} factory a default value factory for the property
- * @returns {void}
- */
- const F = (obj, prop, factory) => {
- if (obj[prop] === undefined) {
- obj[prop] = factory();
- }
- };
- /**
- * Sets a dynamic default value when undefined, by calling the factory function.
- * factory must return an array or undefined
- * When the current value is already an array an contains "..." it's replaced with
- * the result of the factory function
- * @template T
- * @template {keyof T} P
- * @param {T} obj an object
- * @param {P} prop a property of this object
- * @param {() => T[P]} factory a default value factory for the property
- * @returns {void}
- */
- const A = (obj, prop, factory) => {
- const value = obj[prop];
- if (value === undefined) {
- obj[prop] = factory();
- } else if (Array.isArray(value)) {
- /** @type {EXPECTED_ANY[] | undefined} */
- let newArray;
- for (let i = 0; i < value.length; i++) {
- const item = value[i];
- if (item === "...") {
- if (newArray === undefined) {
- newArray = value.slice(0, i);
- obj[prop] = /** @type {T[P]} */ (/** @type {unknown} */ (newArray));
- }
- const items = /** @type {EXPECTED_ANY[]} */ (
- /** @type {unknown} */ (factory())
- );
- if (items !== undefined) {
- for (const item of items) {
- newArray.push(item);
- }
- }
- } else if (newArray !== undefined) {
- newArray.push(item);
- }
- }
- }
- };
- /**
- * @param {WebpackOptionsNormalized} options options to be modified
- * @returns {void}
- */
- const applyWebpackOptionsBaseDefaults = options => {
- F(options, "context", () => process.cwd());
- applyInfrastructureLoggingDefaults(options.infrastructureLogging);
- };
- /**
- * @param {WebpackOptionsNormalized} options options to be modified
- * @param {number} [compilerIndex] index of compiler
- * @returns {ResolvedOptions} Resolved options after apply defaults
- */
- const applyWebpackOptionsDefaults = (options, compilerIndex) => {
- F(options, "context", () => process.cwd());
- F(options, "target", () =>
- getDefaultTarget(/** @type {string} */ (options.context))
- );
- const { mode, name, target } = options;
- const targetProperties =
- target === false
- ? /** @type {false} */ (false)
- : typeof target === "string"
- ? getTargetProperties(target, /** @type {Context} */ (options.context))
- : getTargetsProperties(
- /** @type {string[]} */ (target),
- /** @type {Context} */ (options.context)
- );
- const development = mode === "development";
- const production = mode === "production" || !mode;
- if (typeof options.entry !== "function") {
- for (const key of Object.keys(options.entry)) {
- F(
- options.entry[key],
- "import",
- () => /** @type {[string]} */ (["./src"])
- );
- }
- }
- F(options, "devtool", () => (development ? "eval" : false));
- D(options, "watch", false);
- D(options, "profile", false);
- D(options, "parallelism", 100);
- D(options, "recordsInputPath", false);
- D(options, "recordsOutputPath", false);
- applyExperimentsDefaults(options.experiments, {
- production,
- development,
- targetProperties
- });
- const futureDefaults =
- /** @type {NonNullable<ExperimentsNormalized["futureDefaults"]>} */
- (options.experiments.futureDefaults);
- F(options, "cache", () =>
- development ? { type: /** @type {"memory"} */ ("memory") } : false
- );
- applyCacheDefaults(options.cache, {
- name: name || DEFAULT_CACHE_NAME,
- mode: mode || "production",
- development,
- cacheUnaffected: options.experiments.cacheUnaffected,
- futureDefaults,
- compilerIndex
- });
- const cache = Boolean(options.cache);
- applySnapshotDefaults(options.snapshot, {
- production,
- futureDefaults
- });
- applyOutputDefaults(options.output, {
- context: /** @type {Context} */ (options.context),
- targetProperties,
- isAffectedByBrowserslist:
- target === undefined ||
- (typeof target === "string" && target.startsWith("browserslist")) ||
- (Array.isArray(target) &&
- target.some(target => target.startsWith("browserslist"))),
- outputModule:
- /** @type {NonNullable<ExperimentsNormalized["outputModule"]>} */
- (options.experiments.outputModule),
- development,
- entry: options.entry,
- futureDefaults,
- asyncWebAssembly:
- /** @type {NonNullable<ExperimentsNormalized["asyncWebAssembly"]>} */
- (options.experiments.asyncWebAssembly)
- });
- applyModuleDefaults(options.module, {
- cache,
- syncWebAssembly:
- /** @type {NonNullable<ExperimentsNormalized["syncWebAssembly"]>} */
- (options.experiments.syncWebAssembly),
- asyncWebAssembly:
- /** @type {NonNullable<ExperimentsNormalized["asyncWebAssembly"]>} */
- (options.experiments.asyncWebAssembly),
- css:
- /** @type {NonNullable<ExperimentsNormalized["css"]>} */
- (options.experiments.css),
- futureDefaults,
- isNode: targetProperties && targetProperties.node === true,
- uniqueName: /** @type {string} */ (options.output.uniqueName),
- targetProperties,
- mode: options.mode
- });
- applyExternalsPresetsDefaults(options.externalsPresets, {
- targetProperties,
- buildHttp: Boolean(options.experiments.buildHttp)
- });
- applyLoaderDefaults(
- /** @type {NonNullable<WebpackOptionsNormalized["loader"]>} */ (
- options.loader
- ),
- { targetProperties, environment: options.output.environment }
- );
- F(options, "externalsType", () => {
- const validExternalTypes = require("../../schemas/WebpackOptions.json")
- .definitions.ExternalsType.enum;
- return options.output.library &&
- validExternalTypes.includes(options.output.library.type)
- ? /** @type {ExternalsType} */ (options.output.library.type)
- : options.output.module
- ? "module-import"
- : "var";
- });
- applyNodeDefaults(options.node, {
- futureDefaults:
- /** @type {NonNullable<WebpackOptionsNormalized["experiments"]["futureDefaults"]>} */
- (options.experiments.futureDefaults),
- outputModule:
- /** @type {NonNullable<WebpackOptionsNormalized["output"]["module"]>} */
- (options.output.module),
- targetProperties
- });
- F(options, "performance", () =>
- production &&
- targetProperties &&
- (targetProperties.browser || targetProperties.browser === null)
- ? {}
- : false
- );
- applyPerformanceDefaults(
- /** @type {NonNullable<WebpackOptionsNormalized["performance"]>} */
- (options.performance),
- {
- production
- }
- );
- applyOptimizationDefaults(options.optimization, {
- development,
- production,
- css:
- /** @type {NonNullable<ExperimentsNormalized["css"]>} */
- (options.experiments.css),
- records: Boolean(options.recordsInputPath || options.recordsOutputPath)
- });
- options.resolve = cleverMerge(
- getResolveDefaults({
- cache,
- context: /** @type {Context} */ (options.context),
- targetProperties,
- mode: /** @type {Mode} */ (options.mode),
- css:
- /** @type {NonNullable<ExperimentsNormalized["css"]>} */
- (options.experiments.css)
- }),
- options.resolve
- );
- options.resolveLoader = cleverMerge(
- getResolveLoaderDefaults({ cache }),
- options.resolveLoader
- );
- return {
- platform:
- targetProperties === false
- ? targetProperties
- : {
- web: targetProperties.web,
- browser: targetProperties.browser,
- webworker: targetProperties.webworker,
- node: targetProperties.node,
- nwjs: targetProperties.nwjs,
- electron: targetProperties.electron
- }
- };
- };
- /**
- * @param {ExperimentsNormalized} experiments options
- * @param {object} options options
- * @param {boolean} options.production is production
- * @param {boolean} options.development is development mode
- * @param {TargetProperties | false} options.targetProperties target properties
- * @returns {void}
- */
- const applyExperimentsDefaults = (
- experiments,
- { production, development, targetProperties }
- ) => {
- D(experiments, "futureDefaults", false);
- D(experiments, "backCompat", !experiments.futureDefaults);
- D(experiments, "syncWebAssembly", false);
- D(experiments, "asyncWebAssembly", experiments.futureDefaults);
- D(experiments, "outputModule", false);
- D(experiments, "layers", false);
- D(experiments, "lazyCompilation", undefined);
- D(experiments, "buildHttp", undefined);
- D(experiments, "cacheUnaffected", experiments.futureDefaults);
- F(experiments, "css", () => (experiments.futureDefaults ? true : undefined));
- // TODO webpack 6: remove this. topLevelAwait should be enabled by default
- let shouldEnableTopLevelAwait = true;
- if (typeof experiments.topLevelAwait === "boolean") {
- shouldEnableTopLevelAwait = experiments.topLevelAwait;
- }
- D(experiments, "topLevelAwait", shouldEnableTopLevelAwait);
- if (typeof experiments.buildHttp === "object") {
- D(experiments.buildHttp, "frozen", production);
- D(experiments.buildHttp, "upgrade", false);
- }
- };
- /**
- * @param {CacheOptionsNormalized} cache options
- * @param {object} options options
- * @param {string} options.name name
- * @param {Mode} options.mode mode
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @param {boolean} options.development is development mode
- * @param {number} [options.compilerIndex] index of compiler
- * @param {Experiments["cacheUnaffected"]} options.cacheUnaffected the cacheUnaffected experiment is enabled
- * @returns {void}
- */
- const applyCacheDefaults = (
- cache,
- { name, mode, development, cacheUnaffected, compilerIndex, futureDefaults }
- ) => {
- if (cache === false) return;
- switch (cache.type) {
- case "filesystem":
- F(cache, "name", () =>
- compilerIndex !== undefined
- ? `${`${name}-${mode}`}__compiler${compilerIndex + 1}__`
- : `${name}-${mode}`
- );
- D(cache, "version", "");
- F(cache, "cacheDirectory", () => {
- const cwd = process.cwd();
- /** @type {string | undefined} */
- let dir = cwd;
- for (;;) {
- try {
- if (fs.statSync(path.join(dir, "package.json")).isFile()) break;
- // eslint-disable-next-line no-empty
- } catch (_err) {}
- const parent = path.dirname(dir);
- if (dir === parent) {
- dir = undefined;
- break;
- }
- dir = parent;
- }
- if (!dir) {
- return path.resolve(cwd, ".cache/webpack");
- } else if (process.versions.pnp === "1") {
- return path.resolve(dir, ".pnp/.cache/webpack");
- } else if (process.versions.pnp === "3") {
- return path.resolve(dir, ".yarn/.cache/webpack");
- }
- return path.resolve(dir, "node_modules/.cache/webpack");
- });
- F(cache, "cacheLocation", () =>
- path.resolve(
- /** @type {NonNullable<FileCacheOptions["cacheDirectory"]>} */
- (cache.cacheDirectory),
- /** @type {NonNullable<FileCacheOptions["name"]>} */ (cache.name)
- )
- );
- D(cache, "hashAlgorithm", futureDefaults ? "xxhash64" : "md4");
- D(cache, "store", "pack");
- D(cache, "compression", false);
- D(cache, "profile", false);
- D(cache, "idleTimeout", 60000);
- D(cache, "idleTimeoutForInitialStore", 5000);
- D(cache, "idleTimeoutAfterLargeChanges", 1000);
- D(cache, "maxMemoryGenerations", development ? 5 : Infinity);
- D(cache, "maxAge", 1000 * 60 * 60 * 24 * 60); // 1 month
- D(cache, "allowCollectingMemory", development);
- D(cache, "memoryCacheUnaffected", development && cacheUnaffected);
- D(cache, "readonly", false);
- D(
- /** @type {NonNullable<FileCacheOptions["buildDependencies"]>} */
- (cache.buildDependencies),
- "defaultWebpack",
- [path.resolve(__dirname, "..") + path.sep]
- );
- break;
- case "memory":
- D(cache, "maxGenerations", Infinity);
- D(cache, "cacheUnaffected", development && cacheUnaffected);
- break;
- }
- };
- /**
- * @param {SnapshotOptions} snapshot options
- * @param {object} options options
- * @param {boolean} options.production is production
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @returns {void}
- */
- const applySnapshotDefaults = (snapshot, { production, futureDefaults }) => {
- if (futureDefaults) {
- F(snapshot, "managedPaths", () =>
- process.versions.pnp === "3"
- ? [
- /^(.+?(?:[\\/]\.yarn[\\/]unplugged[\\/][^\\/]+)?[\\/]node_modules[\\/])/
- ]
- : [/^(.+?[\\/]node_modules[\\/])/]
- );
- F(snapshot, "immutablePaths", () =>
- process.versions.pnp === "3"
- ? [/^(.+?[\\/]cache[\\/][^\\/]+\.zip[\\/]node_modules[\\/])/]
- : []
- );
- } else {
- A(snapshot, "managedPaths", () => {
- if (process.versions.pnp === "3") {
- const match =
- /^(.+?)[\\/]cache[\\/]watchpack-npm-[^\\/]+\.zip[\\/]node_modules[\\/]/.exec(
- require.resolve("watchpack")
- );
- if (match) {
- return [path.resolve(match[1], "unplugged")];
- }
- } else {
- const match = /^(.+?[\\/]node_modules[\\/])/.exec(
- require.resolve("watchpack")
- );
- if (match) {
- return [match[1]];
- }
- }
- return [];
- });
- A(snapshot, "immutablePaths", () => {
- if (process.versions.pnp === "1") {
- const match =
- /^(.+?[\\/]v4)[\\/]npm-watchpack-[^\\/]+-[\da-f]{40}[\\/]node_modules[\\/]/.exec(
- require.resolve("watchpack")
- );
- if (match) {
- return [match[1]];
- }
- } else if (process.versions.pnp === "3") {
- const match =
- /^(.+?)[\\/]watchpack-npm-[^\\/]+\.zip[\\/]node_modules[\\/]/.exec(
- require.resolve("watchpack")
- );
- if (match) {
- return [match[1]];
- }
- }
- return [];
- });
- }
- F(snapshot, "unmanagedPaths", () => []);
- F(snapshot, "resolveBuildDependencies", () => ({
- timestamp: true,
- hash: true
- }));
- F(snapshot, "buildDependencies", () => ({ timestamp: true, hash: true }));
- F(snapshot, "module", () =>
- production ? { timestamp: true, hash: true } : { timestamp: true }
- );
- F(snapshot, "resolve", () =>
- production ? { timestamp: true, hash: true } : { timestamp: true }
- );
- };
- /**
- * @param {JavascriptParserOptions} parserOptions parser options
- * @param {object} options options
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @param {boolean} options.isNode is node target platform
- * @returns {void}
- */
- const applyJavascriptParserOptionsDefaults = (
- parserOptions,
- { futureDefaults, isNode }
- ) => {
- D(parserOptions, "unknownContextRequest", ".");
- D(parserOptions, "unknownContextRegExp", false);
- D(parserOptions, "unknownContextRecursive", true);
- D(parserOptions, "unknownContextCritical", true);
- D(parserOptions, "exprContextRequest", ".");
- D(parserOptions, "exprContextRegExp", false);
- D(parserOptions, "exprContextRecursive", true);
- D(parserOptions, "exprContextCritical", true);
- D(parserOptions, "wrappedContextRegExp", /.*/);
- D(parserOptions, "wrappedContextRecursive", true);
- D(parserOptions, "wrappedContextCritical", false);
- D(parserOptions, "strictThisContextOnImports", false);
- D(parserOptions, "importMeta", true);
- D(parserOptions, "dynamicImportMode", "lazy");
- D(parserOptions, "dynamicImportPrefetch", false);
- D(parserOptions, "dynamicImportPreload", false);
- D(parserOptions, "dynamicImportFetchPriority", false);
- D(parserOptions, "createRequire", isNode);
- if (futureDefaults) D(parserOptions, "exportsPresence", "error");
- };
- /**
- * @param {JsonGeneratorOptions} generatorOptions generator options
- * @returns {void}
- */
- const applyJsonGeneratorOptionsDefaults = generatorOptions => {
- D(generatorOptions, "JSONParse", true);
- };
- /**
- * @param {CssGeneratorOptions} generatorOptions generator options
- * @param {object} options options
- * @param {TargetProperties | false} options.targetProperties target properties
- * @returns {void}
- */
- const applyCssGeneratorOptionsDefaults = (
- generatorOptions,
- { targetProperties }
- ) => {
- D(
- generatorOptions,
- "exportsOnly",
- !targetProperties || targetProperties.document === false
- );
- D(generatorOptions, "esModule", true);
- };
- /**
- * @param {ModuleOptions} module options
- * @param {object} options options
- * @param {boolean} options.cache is caching enabled
- * @param {boolean} options.syncWebAssembly is syncWebAssembly enabled
- * @param {boolean} options.asyncWebAssembly is asyncWebAssembly enabled
- * @param {boolean} options.css is css enabled
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @param {string} options.uniqueName the unique name
- * @param {boolean} options.isNode is node target platform
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {Mode | undefined} options.mode mode
- * @returns {void}
- */
- const applyModuleDefaults = (
- module,
- {
- cache,
- syncWebAssembly,
- asyncWebAssembly,
- css,
- futureDefaults,
- isNode,
- uniqueName,
- targetProperties,
- mode
- }
- ) => {
- if (cache) {
- D(
- module,
- "unsafeCache",
- /**
- * @param {Module} module module
- * @returns {boolean | null | string} true, if we want to cache the module
- */
- module => {
- const name = module.nameForCondition();
- return name && NODE_MODULES_REGEXP.test(name);
- }
- );
- } else {
- D(module, "unsafeCache", false);
- }
- F(module.parser, ASSET_MODULE_TYPE, () => ({}));
- F(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[ASSET_MODULE_TYPE]>} */
- (module.parser[ASSET_MODULE_TYPE]),
- "dataUrlCondition",
- () => ({})
- );
- if (
- typeof (
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[ASSET_MODULE_TYPE]>} */
- (module.parser[ASSET_MODULE_TYPE]).dataUrlCondition
- ) === "object"
- ) {
- D(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[ASSET_MODULE_TYPE]>} */
- (module.parser[ASSET_MODULE_TYPE]).dataUrlCondition,
- "maxSize",
- 8096
- );
- }
- F(module.parser, "javascript", () => ({}));
- F(module.parser, JSON_MODULE_TYPE, () => ({}));
- D(
- module.parser[JSON_MODULE_TYPE],
- "exportsDepth",
- mode === "development" ? 1 : Infinity
- );
- applyJavascriptParserOptionsDefaults(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown["javascript"]>} */
- (module.parser.javascript),
- {
- futureDefaults,
- isNode
- }
- );
- F(module.generator, "json", () => ({}));
- applyJsonGeneratorOptionsDefaults(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown["json"]>} */
- (module.generator.json)
- );
- if (css) {
- F(module.parser, CSS_MODULE_TYPE, () => ({}));
- D(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[CSS_MODULE_TYPE]>} */
- (module.parser[CSS_MODULE_TYPE]),
- "import",
- true
- );
- D(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[CSS_MODULE_TYPE]>} */
- (module.parser[CSS_MODULE_TYPE]),
- "url",
- true
- );
- D(
- /** @type {NonNullable<ParserOptionsByModuleTypeKnown[CSS_MODULE_TYPE]>} */
- (module.parser[CSS_MODULE_TYPE]),
- "namedExports",
- true
- );
- F(module.generator, CSS_MODULE_TYPE, () => ({}));
- applyCssGeneratorOptionsDefaults(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE]>} */
- (module.generator[CSS_MODULE_TYPE]),
- { targetProperties }
- );
- const localIdentName =
- uniqueName.length > 0 ? "[uniqueName]-[id]-[local]" : "[id]-[local]";
- F(module.generator, CSS_MODULE_TYPE_AUTO, () => ({}));
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_AUTO]>} */
- (module.generator[CSS_MODULE_TYPE_AUTO]),
- "localIdentName",
- localIdentName
- );
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_AUTO]>} */
- (module.generator[CSS_MODULE_TYPE_AUTO]),
- "exportsConvention",
- "as-is"
- );
- F(module.generator, CSS_MODULE_TYPE_MODULE, () => ({}));
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_MODULE]>} */
- (module.generator[CSS_MODULE_TYPE_MODULE]),
- "localIdentName",
- localIdentName
- );
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_MODULE]>} */
- (module.generator[CSS_MODULE_TYPE_MODULE]),
- "exportsConvention",
- "as-is"
- );
- F(module.generator, CSS_MODULE_TYPE_GLOBAL, () => ({}));
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_GLOBAL]>} */
- (module.generator[CSS_MODULE_TYPE_GLOBAL]),
- "localIdentName",
- localIdentName
- );
- D(
- /** @type {NonNullable<GeneratorOptionsByModuleTypeKnown[CSS_MODULE_TYPE_GLOBAL]>} */
- (module.generator[CSS_MODULE_TYPE_GLOBAL]),
- "exportsConvention",
- "as-is"
- );
- }
- A(module, "defaultRules", () => {
- const esm = {
- type: JAVASCRIPT_MODULE_TYPE_ESM,
- resolve: {
- byDependency: {
- esm: {
- fullySpecified: true
- }
- }
- }
- };
- const commonjs = {
- type: JAVASCRIPT_MODULE_TYPE_DYNAMIC
- };
- /** @type {RuleSetRules} */
- const rules = [
- {
- mimetype: "application/node",
- type: JAVASCRIPT_MODULE_TYPE_AUTO
- },
- {
- test: /\.json$/i,
- type: JSON_MODULE_TYPE
- },
- {
- mimetype: "application/json",
- type: JSON_MODULE_TYPE
- },
- {
- test: /\.mjs$/i,
- ...esm
- },
- {
- test: /\.js$/i,
- descriptionData: {
- type: "module"
- },
- ...esm
- },
- {
- test: /\.cjs$/i,
- ...commonjs
- },
- {
- test: /\.js$/i,
- descriptionData: {
- type: "commonjs"
- },
- ...commonjs
- },
- {
- mimetype: {
- or: ["text/javascript", "application/javascript"]
- },
- ...esm
- }
- ];
- if (asyncWebAssembly) {
- const wasm = {
- type: WEBASSEMBLY_MODULE_TYPE_ASYNC,
- rules: [
- {
- descriptionData: {
- type: "module"
- },
- resolve: {
- fullySpecified: true
- }
- }
- ]
- };
- rules.push({
- test: /\.wasm$/i,
- ...wasm
- });
- rules.push({
- mimetype: "application/wasm",
- ...wasm
- });
- } else if (syncWebAssembly) {
- const wasm = {
- type: WEBASSEMBLY_MODULE_TYPE_SYNC,
- rules: [
- {
- descriptionData: {
- type: "module"
- },
- resolve: {
- fullySpecified: true
- }
- }
- ]
- };
- rules.push({
- test: /\.wasm$/i,
- ...wasm
- });
- rules.push({
- mimetype: "application/wasm",
- ...wasm
- });
- }
- if (css) {
- const resolve = {
- fullySpecified: true,
- preferRelative: true
- };
- rules.push({
- test: /\.css$/i,
- type: CSS_MODULE_TYPE_AUTO,
- resolve
- });
- rules.push({
- mimetype: "text/css+module",
- type: CSS_MODULE_TYPE_MODULE,
- resolve
- });
- rules.push({
- mimetype: "text/css",
- type: CSS_MODULE_TYPE,
- resolve
- });
- }
- rules.push(
- {
- dependency: "url",
- oneOf: [
- {
- scheme: /^data$/,
- type: ASSET_MODULE_TYPE_INLINE
- },
- {
- type: ASSET_MODULE_TYPE_RESOURCE
- }
- ]
- },
- {
- assert: { type: JSON_MODULE_TYPE },
- type: JSON_MODULE_TYPE
- },
- {
- with: { type: JSON_MODULE_TYPE },
- type: JSON_MODULE_TYPE
- }
- );
- return rules;
- });
- };
- /**
- * @param {Output} output options
- * @param {object} options options
- * @param {string} options.context context
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {boolean} options.isAffectedByBrowserslist is affected by browserslist
- * @param {boolean} options.outputModule is outputModule experiment enabled
- * @param {boolean} options.development is development mode
- * @param {Entry} options.entry entry option
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @param {boolean} options.asyncWebAssembly is asyncWebAssembly enabled
- * @returns {void}
- */
- const applyOutputDefaults = (
- output,
- {
- context,
- targetProperties: tp,
- isAffectedByBrowserslist,
- outputModule,
- development,
- entry,
- futureDefaults,
- asyncWebAssembly
- }
- ) => {
- /**
- * @param {Library=} library the library option
- * @returns {string} a readable library name
- */
- const getLibraryName = library => {
- const libraryName =
- typeof library === "object" &&
- library &&
- !Array.isArray(library) &&
- "type" in library
- ? library.name
- : /** @type {LibraryName} */ (library);
- if (Array.isArray(libraryName)) {
- return libraryName.join(".");
- } else if (typeof libraryName === "object") {
- return getLibraryName(libraryName.root);
- } else if (typeof libraryName === "string") {
- return libraryName;
- }
- return "";
- };
- F(output, "uniqueName", () => {
- const libraryName = getLibraryName(output.library).replace(
- /^\[(\\*[\w:]+\\*)\](\.)|(\.)\[(\\*[\w:]+\\*)\](?=\.|$)|\[(\\*[\w:]+\\*)\]/g,
- (m, a, d1, d2, b, c) => {
- const content = a || b || c;
- return content.startsWith("\\") && content.endsWith("\\")
- ? `${d2 || ""}[${content.slice(1, -1)}]${d1 || ""}`
- : "";
- }
- );
- if (libraryName) return libraryName;
- const pkgPath = path.resolve(context, "package.json");
- try {
- const packageInfo = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
- return packageInfo.name || "";
- } catch (err) {
- if (/** @type {Error & { code: string }} */ (err).code !== "ENOENT") {
- /** @type {Error & { code: string }} */
- (err).message +=
- `\nwhile determining default 'output.uniqueName' from 'name' in ${pkgPath}`;
- throw err;
- }
- return "";
- }
- });
- F(output, "module", () => Boolean(outputModule));
- const environment = /** @type {Environment} */ (output.environment);
- /**
- * @param {boolean | undefined} v value
- * @returns {boolean} true, when v is truthy or undefined
- */
- const optimistic = v => v || v === undefined;
- /**
- * @param {boolean | undefined} v value
- * @param {boolean | undefined} c condition
- * @returns {boolean | undefined} true, when v is truthy or undefined, or c is truthy
- */
- const conditionallyOptimistic = (v, c) => (v === undefined && c) || v;
- F(
- environment,
- "globalThis",
- () => /** @type {boolean | undefined} */ (tp && tp.globalThis)
- );
- F(
- environment,
- "bigIntLiteral",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.bigIntLiteral))
- );
- F(
- environment,
- "const",
- () => tp && optimistic(/** @type {boolean | undefined} */ (tp.const))
- );
- F(
- environment,
- "arrowFunction",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.arrowFunction))
- );
- F(
- environment,
- "asyncFunction",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.asyncFunction))
- );
- F(
- environment,
- "forOf",
- () => tp && optimistic(/** @type {boolean | undefined} */ (tp.forOf))
- );
- F(
- environment,
- "destructuring",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.destructuring))
- );
- F(
- environment,
- "optionalChaining",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.optionalChaining))
- );
- F(
- environment,
- "nodePrefixForCoreModules",
- () =>
- tp &&
- optimistic(
- /** @type {boolean | undefined} */ (tp.nodePrefixForCoreModules)
- )
- );
- F(
- environment,
- "templateLiteral",
- () =>
- tp && optimistic(/** @type {boolean | undefined} */ (tp.templateLiteral))
- );
- F(environment, "dynamicImport", () =>
- conditionallyOptimistic(
- /** @type {boolean | undefined} */ (tp && tp.dynamicImport),
- output.module
- )
- );
- F(environment, "dynamicImportInWorker", () =>
- conditionallyOptimistic(
- /** @type {boolean | undefined} */ (tp && tp.dynamicImportInWorker),
- output.module
- )
- );
- F(environment, "module", () =>
- conditionallyOptimistic(
- /** @type {boolean | undefined} */ (tp && tp.module),
- output.module
- )
- );
- F(
- environment,
- "document",
- () => tp && optimistic(/** @type {boolean | undefined} */ (tp.document))
- );
- D(output, "filename", output.module ? "[name].mjs" : "[name].js");
- F(output, "iife", () => !output.module);
- D(output, "importFunctionName", "import");
- D(output, "importMetaName", "import.meta");
- F(output, "chunkFilename", () => {
- const filename =
- /** @type {NonNullable<Output["chunkFilename"]>} */
- (output.filename);
- if (typeof filename !== "function") {
- const hasName = filename.includes("[name]");
- const hasId = filename.includes("[id]");
- const hasChunkHash = filename.includes("[chunkhash]");
- const hasContentHash = filename.includes("[contenthash]");
- // Anything changing depending on chunk is fine
- if (hasChunkHash || hasContentHash || hasName || hasId) return filename;
- // Otherwise prefix "[id]." in front of the basename to make it changing
- return filename.replace(/(^|\/)([^/]*(?:\?|$))/, "$1[id].$2");
- }
- return output.module ? "[id].mjs" : "[id].js";
- });
- F(output, "cssFilename", () => {
- const filename =
- /** @type {NonNullable<Output["cssFilename"]>} */
- (output.filename);
- if (typeof filename !== "function") {
- return filename.replace(/\.[mc]?js(\?|$)/, ".css$1");
- }
- return "[id].css";
- });
- F(output, "cssChunkFilename", () => {
- const chunkFilename =
- /** @type {NonNullable<Output["cssChunkFilename"]>} */
- (output.chunkFilename);
- if (typeof chunkFilename !== "function") {
- return chunkFilename.replace(/\.[mc]?js(\?|$)/, ".css$1");
- }
- return "[id].css";
- });
- D(output, "assetModuleFilename", "[hash][ext][query]");
- D(output, "webassemblyModuleFilename", "[hash].module.wasm");
- D(output, "compareBeforeEmit", true);
- D(output, "charset", !futureDefaults);
- const uniqueNameId = Template.toIdentifier(
- /** @type {NonNullable<Output["uniqueName"]>} */ (output.uniqueName)
- );
- F(output, "hotUpdateGlobal", () => `webpackHotUpdate${uniqueNameId}`);
- F(output, "chunkLoadingGlobal", () => `webpackChunk${uniqueNameId}`);
- F(output, "globalObject", () => {
- if (tp) {
- if (tp.global) return "global";
- if (tp.globalThis) return "globalThis";
- }
- return "self";
- });
- F(output, "chunkFormat", () => {
- if (tp) {
- const helpMessage = isAffectedByBrowserslist
- ? "Make sure that your 'browserslist' includes only platforms that support these features or select an appropriate 'target' to allow selecting a chunk format by default. Alternatively specify the 'output.chunkFormat' directly."
- : "Select an appropriate 'target' to allow selecting one by default, or specify the 'output.chunkFormat' directly.";
- if (output.module) {
- if (environment.dynamicImport) return "module";
- if (tp.document) return "array-push";
- throw new Error(
- "For the selected environment is no default ESM chunk format available:\n" +
- "ESM exports can be chosen when 'import()' is available.\n" +
- `JSONP Array push can be chosen when 'document' is available.\n${
- helpMessage
- }`
- );
- } else {
- if (tp.document) return "array-push";
- if (tp.require) return "commonjs";
- if (tp.nodeBuiltins) return "commonjs";
- if (tp.importScripts) return "array-push";
- throw new Error(
- "For the selected environment is no default script chunk format available:\n" +
- "JSONP Array push can be chosen when 'document' or 'importScripts' is available.\n" +
- `CommonJs exports can be chosen when 'require' or node builtins are available.\n${
- helpMessage
- }`
- );
- }
- }
- throw new Error(
- "Chunk format can't be selected by default when no target is specified"
- );
- });
- D(output, "asyncChunks", true);
- F(output, "chunkLoading", () => {
- if (tp) {
- switch (output.chunkFormat) {
- case "array-push":
- if (tp.document) return "jsonp";
- if (tp.importScripts) return "import-scripts";
- break;
- case "commonjs":
- if (tp.require) return "require";
- if (tp.nodeBuiltins) return "async-node";
- break;
- case "module":
- if (environment.dynamicImport) return "import";
- break;
- }
- if (
- (tp.require === null ||
- tp.nodeBuiltins === null ||
- tp.document === null ||
- tp.importScripts === null) &&
- output.module &&
- environment.dynamicImport
- ) {
- return "universal";
- }
- }
- return false;
- });
- F(output, "workerChunkLoading", () => {
- if (tp) {
- switch (output.chunkFormat) {
- case "array-push":
- if (tp.importScriptsInWorker) return "import-scripts";
- break;
- case "commonjs":
- if (tp.require) return "require";
- if (tp.nodeBuiltins) return "async-node";
- break;
- case "module":
- if (environment.dynamicImportInWorker) return "import";
- break;
- }
- if (
- (tp.require === null ||
- tp.nodeBuiltins === null ||
- tp.importScriptsInWorker === null) &&
- output.module &&
- environment.dynamicImport
- ) {
- return "universal";
- }
- }
- return false;
- });
- F(output, "wasmLoading", () => {
- if (tp) {
- if (tp.fetchWasm) return "fetch";
- if (tp.nodeBuiltins) return "async-node";
- if (
- (tp.nodeBuiltins === null || tp.fetchWasm === null) &&
- asyncWebAssembly &&
- output.module &&
- environment.dynamicImport
- ) {
- return "universal";
- }
- }
- return false;
- });
- F(output, "workerWasmLoading", () => output.wasmLoading);
- F(output, "devtoolNamespace", () => output.uniqueName);
- if (output.library) {
- F(output.library, "type", () => (output.module ? "module" : "var"));
- }
- F(output, "path", () => path.join(process.cwd(), "dist"));
- F(output, "pathinfo", () => development);
- D(output, "sourceMapFilename", "[file].map[query]");
- D(
- output,
- "hotUpdateChunkFilename",
- `[id].[fullhash].hot-update.${output.module ? "mjs" : "js"}`
- );
- D(output, "hotUpdateMainFilename", "[runtime].[fullhash].hot-update.json");
- D(output, "crossOriginLoading", false);
- F(output, "scriptType", () => (output.module ? "module" : false));
- D(
- output,
- "publicPath",
- (tp && (tp.document || tp.importScripts)) || output.scriptType === "module"
- ? "auto"
- : ""
- );
- D(output, "workerPublicPath", "");
- D(output, "chunkLoadTimeout", 120000);
- F(output, "hashFunction", () => {
- if (futureDefaults) {
- DEFAULTS.HASH_FUNCTION = "xxhash64";
- return "xxhash64";
- }
- return "md4";
- });
- D(output, "hashDigest", "hex");
- D(output, "hashDigestLength", futureDefaults ? 16 : 20);
- D(output, "strictModuleErrorHandling", false);
- D(output, "strictModuleExceptionHandling", false);
- const { trustedTypes } = output;
- if (trustedTypes) {
- F(
- trustedTypes,
- "policyName",
- () =>
- /** @type {NonNullable<Output["uniqueName"]>} */
- (output.uniqueName).replace(/[^a-zA-Z0-9\-#=_/@.%]+/g, "_") || "webpack"
- );
- D(trustedTypes, "onPolicyCreationFailure", "stop");
- }
- /**
- * @param {(entryDescription: EntryDescription) => void} fn iterator
- * @returns {void}
- */
- const forEachEntry = fn => {
- for (const name of Object.keys(entry)) {
- fn(/** @type {{[k: string] : EntryDescription}} */ (entry)[name]);
- }
- };
- A(output, "enabledLibraryTypes", () => {
- /** @type {LibraryType[]} */
- const enabledLibraryTypes = [];
- if (output.library) {
- enabledLibraryTypes.push(output.library.type);
- }
- forEachEntry(desc => {
- if (desc.library) {
- enabledLibraryTypes.push(desc.library.type);
- }
- });
- return enabledLibraryTypes;
- });
- A(output, "enabledChunkLoadingTypes", () => {
- const enabledChunkLoadingTypes = new Set();
- if (output.chunkLoading) {
- enabledChunkLoadingTypes.add(output.chunkLoading);
- }
- if (output.workerChunkLoading) {
- enabledChunkLoadingTypes.add(output.workerChunkLoading);
- }
- forEachEntry(desc => {
- if (desc.chunkLoading) {
- enabledChunkLoadingTypes.add(desc.chunkLoading);
- }
- });
- return Array.from(enabledChunkLoadingTypes);
- });
- A(output, "enabledWasmLoadingTypes", () => {
- const enabledWasmLoadingTypes = new Set();
- if (output.wasmLoading) {
- enabledWasmLoadingTypes.add(output.wasmLoading);
- }
- if (output.workerWasmLoading) {
- enabledWasmLoadingTypes.add(output.workerWasmLoading);
- }
- forEachEntry(desc => {
- if (desc.wasmLoading) {
- enabledWasmLoadingTypes.add(desc.wasmLoading);
- }
- });
- return Array.from(enabledWasmLoadingTypes);
- });
- };
- /**
- * @param {ExternalsPresets} externalsPresets options
- * @param {object} options options
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {boolean} options.buildHttp buildHttp experiment enabled
- * @returns {void}
- */
- const applyExternalsPresetsDefaults = (
- externalsPresets,
- { targetProperties, buildHttp }
- ) => {
- D(
- externalsPresets,
- "web",
- /** @type {boolean | undefined} */
- (!buildHttp && targetProperties && targetProperties.web)
- );
- D(
- externalsPresets,
- "node",
- /** @type {boolean | undefined} */
- (targetProperties && targetProperties.node)
- );
- D(
- externalsPresets,
- "nwjs",
- /** @type {boolean | undefined} */
- (targetProperties && targetProperties.nwjs)
- );
- D(
- externalsPresets,
- "electron",
- /** @type {boolean | undefined} */
- (targetProperties && targetProperties.electron)
- );
- D(
- externalsPresets,
- "electronMain",
- /** @type {boolean | undefined} */
- (
- targetProperties &&
- targetProperties.electron &&
- targetProperties.electronMain
- )
- );
- D(
- externalsPresets,
- "electronPreload",
- /** @type {boolean | undefined} */
- (
- targetProperties &&
- targetProperties.electron &&
- targetProperties.electronPreload
- )
- );
- D(
- externalsPresets,
- "electronRenderer",
- /** @type {boolean | undefined} */
- (
- targetProperties &&
- targetProperties.electron &&
- targetProperties.electronRenderer
- )
- );
- };
- /**
- * @param {Loader} loader options
- * @param {object} options options
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {Environment} options.environment environment
- * @returns {void}
- */
- const applyLoaderDefaults = (loader, { targetProperties, environment }) => {
- F(loader, "target", () => {
- if (targetProperties) {
- if (targetProperties.electron) {
- if (targetProperties.electronMain) return "electron-main";
- if (targetProperties.electronPreload) return "electron-preload";
- if (targetProperties.electronRenderer) return "electron-renderer";
- return "electron";
- }
- if (targetProperties.nwjs) return "nwjs";
- if (targetProperties.node) return "node";
- if (targetProperties.web) return "web";
- }
- });
- D(loader, "environment", environment);
- };
- /**
- * @param {WebpackNode} node options
- * @param {object} options options
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {boolean} options.futureDefaults is future defaults enabled
- * @param {boolean} options.outputModule is output type is module
- * @returns {void}
- */
- const applyNodeDefaults = (
- node,
- { futureDefaults, outputModule, targetProperties }
- ) => {
- if (node === false) return;
- F(node, "global", () => {
- if (targetProperties && targetProperties.global) return false;
- // TODO webpack 6 should always default to false
- return futureDefaults ? "warn" : true;
- });
- const handlerForNames = () => {
- if (targetProperties && targetProperties.node)
- return outputModule ? "node-module" : "eval-only";
- // TODO webpack 6 should always default to false
- return futureDefaults ? "warn-mock" : "mock";
- };
- F(node, "__filename", handlerForNames);
- F(node, "__dirname", handlerForNames);
- };
- /**
- * @param {Performance} performance options
- * @param {object} options options
- * @param {boolean} options.production is production
- * @returns {void}
- */
- const applyPerformanceDefaults = (performance, { production }) => {
- if (performance === false) return;
- D(performance, "maxAssetSize", 250000);
- D(performance, "maxEntrypointSize", 250000);
- F(performance, "hints", () => (production ? "warning" : false));
- };
- /**
- * @param {Optimization} optimization options
- * @param {object} options options
- * @param {boolean} options.production is production
- * @param {boolean} options.development is development
- * @param {boolean} options.css is css enabled
- * @param {boolean} options.records using records
- * @returns {void}
- */
- const applyOptimizationDefaults = (
- optimization,
- { production, development, css, records }
- ) => {
- D(optimization, "removeAvailableModules", false);
- D(optimization, "removeEmptyChunks", true);
- D(optimization, "mergeDuplicateChunks", true);
- D(optimization, "flagIncludedChunks", production);
- F(optimization, "moduleIds", () => {
- if (production) return "deterministic";
- if (development) return "named";
- return "natural";
- });
- F(optimization, "chunkIds", () => {
- if (production) return "deterministic";
- if (development) return "named";
- return "natural";
- });
- F(optimization, "sideEffects", () => (production ? true : "flag"));
- D(optimization, "providedExports", true);
- D(optimization, "usedExports", production);
- D(optimization, "innerGraph", production);
- D(optimization, "mangleExports", production);
- D(optimization, "concatenateModules", production);
- D(optimization, "avoidEntryIife", production);
- D(optimization, "runtimeChunk", false);
- D(optimization, "emitOnErrors", !production);
- D(optimization, "checkWasmTypes", production);
- D(optimization, "mangleWasmImports", false);
- D(optimization, "portableRecords", records);
- D(optimization, "realContentHash", production);
- D(optimization, "minimize", production);
- A(optimization, "minimizer", () => [
- {
- apply: compiler => {
- // Lazy load the Terser plugin
- const TerserPlugin = require("terser-webpack-plugin");
- new TerserPlugin({
- terserOptions: {
- compress: {
- passes: 2
- }
- }
- }).apply(/** @type {TODO} */ (compiler));
- }
- }
- ]);
- F(optimization, "nodeEnv", () => {
- if (production) return "production";
- if (development) return "development";
- return false;
- });
- const { splitChunks } = optimization;
- if (splitChunks) {
- A(splitChunks, "defaultSizeTypes", () =>
- css ? ["javascript", "css", "unknown"] : ["javascript", "unknown"]
- );
- D(splitChunks, "hidePathInfo", production);
- D(splitChunks, "chunks", "async");
- D(splitChunks, "usedExports", optimization.usedExports === true);
- D(splitChunks, "minChunks", 1);
- F(splitChunks, "minSize", () => (production ? 20000 : 10000));
- F(splitChunks, "minRemainingSize", () => (development ? 0 : undefined));
- F(splitChunks, "enforceSizeThreshold", () => (production ? 50000 : 30000));
- F(splitChunks, "maxAsyncRequests", () => (production ? 30 : Infinity));
- F(splitChunks, "maxInitialRequests", () => (production ? 30 : Infinity));
- D(splitChunks, "automaticNameDelimiter", "-");
- const cacheGroups =
- /** @type {NonNullable<OptimizationSplitChunksOptions["cacheGroups"]>} */
- (splitChunks.cacheGroups);
- F(cacheGroups, "default", () => ({
- idHint: "",
- reuseExistingChunk: true,
- minChunks: 2,
- priority: -20
- }));
- F(cacheGroups, "defaultVendors", () => ({
- idHint: "vendors",
- reuseExistingChunk: true,
- test: NODE_MODULES_REGEXP,
- priority: -10
- }));
- }
- };
- /**
- * @param {object} options options
- * @param {boolean} options.cache is cache enable
- * @param {string} options.context build context
- * @param {TargetProperties | false} options.targetProperties target properties
- * @param {Mode} options.mode mode
- * @param {boolean} options.css is css enabled
- * @returns {ResolveOptions} resolve options
- */
- const getResolveDefaults = ({
- cache,
- context,
- targetProperties,
- mode,
- css
- }) => {
- /** @type {string[]} */
- const conditions = ["webpack"];
- conditions.push(mode === "development" ? "development" : "production");
- if (targetProperties) {
- if (targetProperties.webworker) conditions.push("worker");
- if (targetProperties.node) conditions.push("node");
- if (targetProperties.web) conditions.push("browser");
- if (targetProperties.electron) conditions.push("electron");
- if (targetProperties.nwjs) conditions.push("nwjs");
- }
- const jsExtensions = [".js", ".json", ".wasm"];
- const tp = targetProperties;
- const browserField =
- tp && tp.web && (!tp.node || (tp.electron && tp.electronRenderer));
- /** @type {() => ResolveOptions} */
- const cjsDeps = () => ({
- aliasFields: browserField ? ["browser"] : [],
- mainFields: browserField ? ["browser", "module", "..."] : ["module", "..."],
- conditionNames: ["require", "module", "..."],
- extensions: [...jsExtensions]
- });
- /** @type {() => ResolveOptions} */
- const esmDeps = () => ({
- aliasFields: browserField ? ["browser"] : [],
- mainFields: browserField ? ["browser", "module", "..."] : ["module", "..."],
- conditionNames: ["import", "module", "..."],
- extensions: [...jsExtensions]
- });
- /** @type {ResolveOptions} */
- const resolveOptions = {
- cache,
- modules: ["node_modules"],
- conditionNames: conditions,
- mainFiles: ["index"],
- extensions: [],
- aliasFields: [],
- exportsFields: ["exports"],
- roots: [context],
- mainFields: ["main"],
- importsFields: ["imports"],
- byDependency: {
- wasm: esmDeps(),
- esm: esmDeps(),
- loaderImport: esmDeps(),
- url: {
- preferRelative: true
- },
- worker: {
- ...esmDeps(),
- preferRelative: true
- },
- commonjs: cjsDeps(),
- amd: cjsDeps(),
- // for backward-compat: loadModule
- loader: cjsDeps(),
- // for backward-compat: Custom Dependency
- unknown: cjsDeps(),
- // for backward-compat: getResolve without dependencyType
- undefined: cjsDeps()
- }
- };
- if (css) {
- const styleConditions = [];
- styleConditions.push("webpack");
- styleConditions.push(mode === "development" ? "development" : "production");
- styleConditions.push("style");
- /** @type {NonNullable<ResolveOptions["byDependency"]>} */
- (resolveOptions.byDependency)["css-import"] = {
- // We avoid using any main files because we have to be consistent with CSS `@import`
- // and CSS `@import` does not handle `main` files in directories,
- // you should always specify the full URL for styles
- mainFiles: [],
- mainFields: ["style", "..."],
- conditionNames: styleConditions,
- extensions: [".css"],
- preferRelative: true
- };
- }
- return resolveOptions;
- };
- /**
- * @param {object} options options
- * @param {boolean} options.cache is cache enable
- * @returns {ResolveOptions} resolve options
- */
- const getResolveLoaderDefaults = ({ cache }) => {
- /** @type {ResolveOptions} */
- const resolveOptions = {
- cache,
- conditionNames: ["loader", "require", "node"],
- exportsFields: ["exports"],
- mainFields: ["loader", "main"],
- extensions: [".js"],
- mainFiles: ["index"]
- };
- return resolveOptions;
- };
- /**
- * @param {InfrastructureLogging} infrastructureLogging options
- * @returns {void}
- */
- const applyInfrastructureLoggingDefaults = infrastructureLogging => {
- F(infrastructureLogging, "stream", () => process.stderr);
- const tty =
- /** @type {EXPECTED_ANY} */ (infrastructureLogging.stream).isTTY &&
- process.env.TERM !== "dumb";
- D(infrastructureLogging, "level", "info");
- D(infrastructureLogging, "debug", false);
- D(infrastructureLogging, "colors", tty);
- D(infrastructureLogging, "appendOnly", !tty);
- };
- module.exports.applyWebpackOptionsBaseDefaults =
- applyWebpackOptionsBaseDefaults;
- module.exports.applyWebpackOptionsDefaults = applyWebpackOptionsDefaults;
- module.exports.DEFAULTS = DEFAULTS;
|