mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
![]() |
const packageJson = require("./package.json");
|
||
|
|
||
|
module.exports = {
|
||
|
src: ["./src"],
|
||
|
out: "docs",
|
||
|
exclude: "**/*.spec.ts",
|
||
|
target: "es6",
|
||
|
name: `${packageJson.name} Documentation`,
|
||
|
readme: "README.md",
|
||
|
mode: "file",
|
||
|
excludeExternals: true,
|
||
|
excludeNotExported: true,
|
||
|
excludePrivate: true,
|
||
|
};
|