/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/module/externals/webpack.config.js
32 строки
461 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { module: { parser: { javascript: { importMeta: false } } }, entry: { main: "./index.js", imported: { import: "./imported.js", library: { type: "module" } } }, target: "node14", output: { filename: "[name].mjs" }, externals: "./imported.mjs", experiments: { outputModule: true }, optimization: { concatenateModules: true } };