mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
const packageJson = require("./package.json");
|
|
|
|
module.exports = {
|
|
entryPoints: ["./src"],
|
|
out: "docs",
|
|
exclude: "**/*.spec.ts",
|
|
name: `${packageJson.name} Documentation`,
|
|
readme: "README.md",
|
|
excludeExternals: true,
|
|
excludePrivate: true,
|
|
};
|