data-forge-beta
Version:
JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
29 lines (24 loc) • 552 B
JavaScript
const path = require("path");
module.exports = {
entry: "./src/index.ts",
output: {
path: path.resolve(__dirname, "dist", "node"),
filename: "index.js",
libraryTarget: "commonjs2",
},
target: "node",
mode: "production",
devtool: "source-map",
resolve: {
extensions: [ ".tsx", ".ts", ".js" ],
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
};