/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/library/module-multi-runtime/webpack.config.js
26 строк
425 B
hai-x
fix: module library export definitions when multiple runtimes (#20179)
28 ноя 2025, 12:09
Не верифицирован
28 ноя 2025, 12:09
9dc25ca
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { mode: "production", entry: { entry1: "./entry1.js", entry2: "./entry2.js", entry3: "./entry3.js" }, output: { module: true, library: { type: "module" }, filename: "[name].mjs" }, experiments: { outputModule: true }, externalsType: "module", optimization: { concatenateModules: true, usedExports: true } };