@entestat/formula
Version:
fast excel formula parser
17 lines (15 loc) • 420 B
JavaScript
const path = require("path");
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
mode: "production",
entry: "./index.js",
output: {
path: path.resolve(__dirname, "./build/"),
filename: "parser.min.js",
library: "FormulaParser",
libraryTarget: "umd",
},
plugins: [
// new BundleAnalyzerPlugin(),
],
};