cosmjs/packages/faucet/webpack.node.config.js
2022-04-12 14:36:19 +02:00

22 lines
401 B
JavaScript

/* eslint-disable @typescript-eslint/naming-convention */
const path = require("path");
const target = "node";
const distdir = path.join(__dirname, "dist", target);
module.exports = [
{
target: target,
entry: "./build/cli.js",
output: {
path: distdir,
filename: "cli.js",
library: {
type: "commonjs",
},
},
plugins: [],
resolve: {},
},
];