mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
22 lines
401 B
JavaScript
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: {},
|
|
},
|
|
];
|