Files
medusa-store/typedoc.js-client.js
Shahed Nasser 02d5c1da88 docs: update Typedoc and regenerate references (#1994)
* generated new services reference

* changed from automatic push to automated pull request

* updated typedoc, regenerated JS Client reference

* regenerated the reference after updating typedoc

* added action for js client
2022-08-04 17:29:52 +03:00

32 lines
871 B
JavaScript

const globalTypedocOptions = require("./typedoc")
module.exports = {
...globalTypedocOptions,
entryPoints: ["packages/medusa-js/src/resources"],
entryPointStrategy: "expand",
out: ["docs/content/references/js-client"],
tsconfig: "packages/medusa-js/tsconfig.json",
name: "JS Client Reference",
indexTitle: "JS Client Reference",
entryDocument: "index.md",
hideInPageTOC: true,
hideBreadcrumbs: true,
plugin: [
...globalTypedocOptions.plugin,
"typedoc-plugin-merge-modules",
"typedoc-plugin-reference-excluder",
"typedoc-monorepo-link-types",
"typedoc-frontmatter-plugin",
],
exclude: [
"packages/medusa-js/src/resources/base.ts",
"node_modules/**",
"packages/**/node_modules",
],
excludeConstructors: true,
frontmatterData: {
displayed_sidebar: "jsClientSidebar",
},
pagesPattern: "internal\\.",
}