mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +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: {},
|
||
|
},
|
||
|
];
|