forked from medusajs/medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.js-client.js
More file actions
31 lines (30 loc) · 871 Bytes
/
typedoc.js-client.js
File metadata and controls
31 lines (30 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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\\.",
}