redash/viz-lib/webpack.config.js
Elad Ossadon c290864ccd
Convert viz-lib to TypeScript (#5310)
Co-authored-by: ts-migrate <>
2020-12-15 18:21:37 -08:00

66 lines
1.4 KiB
JavaScript

const LessPluginAutoPrefix = require("less-plugin-autoprefix");
const path = require("path");
const isProduction = process.env.NODE_ENV === "production";
module.exports = {
mode: isProduction ? "production" : "development",
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "dist"),
filename: "redash-visualizations.js",
libraryTarget: "umd",
},
resolve: {
symlinks: false,
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
module: {
rules: [
{
test: /\.[jt]sx?$/,
exclude: /node_modules/,
use: ["babel-loader"],
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
use: [
{
loader: "file-loader",
options: {
outputPath: "images/",
name: "[name].[ext]",
},
},
],
},
{
test: /\.less$/,
use: [
"style-loader",
"css-loader",
{
loader: "less-loader",
options: {
plugins: [new LessPluginAutoPrefix({ browsers: ["last 3 versions"] })],
javascriptEnabled: true,
},
},
],
},
],
},
externals: [
{
lodash: "lodash",
react: "react",
"react-dom": "react-dom",
},
/^antd/i,
],
};