react-filter-box-updated-logic
Version:
Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility
21 lines (19 loc) • 365 B
JavaScript
var path = require("path");
var webpack = require("webpack");
module.exports = {
resolve: {
extensions: [".ts", ".tsx", ".webpack.js", ".web.js", ".js"],
},
module: {
rules: [
{
test: [/\.ts$/, /\.tsx$/],
loaders: ["ts-loader"],
},
{
test: /\.pegjs$/,
loader: "pegjs-loader",
},
],
},
};