generated from react18-tools/turborepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.config.js
More file actions
26 lines (26 loc) · 678 Bytes
/
typedoc.config.js
File metadata and controls
26 lines (26 loc) · 678 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
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
tsconfig: "tsconfig.docs.json",
name: "React18 Loaders",
entryPoints: ["./lib/src"],
exclude: ["**/*.test.*", "**/declaration.d.ts"],
entryPointStrategy: "Expand",
out: "./docs",
commentStyle: "all",
searchInComments: true,
excludeExternals: true,
plugin: [
"typedoc-plugin-markdown",
"typedoc-plugin-mdn-links",
"typedoc-plugin-rename-defaults",
"typedoc-plugin-missing-exports",
],
hidePageHeader: true,
sanitizeComments: true,
router: "module",
mergeReadme: true,
hideBreadcrumbs: true,
expandParameters: true,
expandObjects: true,
theme: "markdown",
};