/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/bun/code-splitting/webpack.config.js
17 строк
360 B
Alexander Akait
feat: add bun target (#21248)
23 июн 2026, 14:33
Не верифицирован
23 июн 2026, 14:33
8ee5dc1
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "bun", // The harness picks the bundle extension from the raw config (before the // bun target's ESM default applies), so set ESM output explicitly. experiments: { outputModule: true }, output: { module: true }, optimization: { chunkIds: "named" } };