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

14 lines
203 B
JavaScript
Raw Normal View History

var DefinePlugin = require("../../../../").DefinePlugin;
module.exports = {
output: {
ecmaVersion: 11
},
plugins: [
new DefinePlugin({
BIGINT: 9007199254740991n,
ZERO_BIGINT: 0n
})
]
};