mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00

This is a TS option, not a typedoc option: https://github.com/TypeStrong/typedoc/blob/v0.17.7/src/lib/utils/options/declaration.ts#L36-L84
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
const packageJson = require("./package.json");
|
|
|
|
module.exports = {
|
|
inputFiles: ["./src"],
|
|
out: "docs",
|
|
exclude: "**/*.spec.ts",
|
|
name: `${packageJson.name} Documentation`,
|
|
readme: "README.md",
|
|
mode: "file",
|
|
excludeExternals: true,
|
|
excludeNotExported: true,
|
|
excludePrivate: true,
|
|
};
|