/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/sharing/share-plugin/webpack.config.js
38 строк
685 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const { SharePlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { mode: "development", devtool: false, plugins: [ new SharePlugin({ shared: { lib1: "^1.0.0", "lib-two": { import: "lib2", requiredVersion: "^1.0.0", version: "1.3.4", strictVersion: true, eager: true }, lib3: { shareScope: "other" }, "./relative1": { import: "./relative1", version: false }, "./relative2": { import: false, shareKey: "store", version: "0", requiredVersion: "0", strictVersion: true }, store: "0" } }) ] };