react-filter-box-updated-logic
Version:
Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility
19 lines (15 loc) • 426 B
JavaScript
var path = require("path");
var webpack = require("webpack");
var _ = require("lodash");
var commonConfig = require("./webpack.common.config");
var config = _.assign(commonConfig, {
devtool: "source-map",
entry: ["./src/index.ts"],
output: {
path: path.join(__dirname, "lib"),
filename: "react-filter-box.js",
library: "react-filter-box",
libraryTarget: "commonjs2",
},
});
module.exports = config;