webpack/test/configCases/plugins/define-plugin-bigint/webpack.config.js

17 lines
297 B
JavaScript

var DefinePlugin = require("../../../../").DefinePlugin;
/** @type {import("../../../../").Configuration} */
module.exports = {
output: {
environment: {
bigIntLiteral: true
}
},
plugins: [
new DefinePlugin({
BIGINT: BigInt("9007199254740993"),
ZERO_BIGINT: BigInt(0)
})
]
};