/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/plugins/define-plugin-bigint/webpack.config.js
18 строк
314 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const DefinePlugin = require("../../../../").DefinePlugin; /** @type {import("../../../../").Configuration} */ module.exports = { output: { environment: { bigIntLiteral: true } }, plugins: [ new DefinePlugin({ BIGINT: BigInt("9007199254740993"), ZERO_BIGINT: BigInt(0) }) ] };