mirror of https://github.com/webpack/webpack.git
17 lines
297 B
JavaScript
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)
|
|
})
|
|
]
|
|
};
|