-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
typedoc.config.js
40 lines (40 loc) · 954 Bytes
/
typedoc.config.js
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
32
33
34
35
36
37
38
39
40
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
tsconfig: "tsconfig.docs.json",
name: "Nextjs Themes",
entryPoints: ["./lib/src"],
exclude: [
"**/*.test.tsx",
"**/index.ts",
"**/server/**",
"**/constants.ts",
"**/store.ts",
"**/no-fouc.ts",
"**/declaration.d.ts",
],
entryPointStrategy: "Expand",
out: "./docs",
commentStyle: "all",
searchInComments: true,
searchInDocuments: true,
cleanOutputDir: true,
excludePrivate: true,
excludeExternals: true,
excludeInternal: true,
projectDocuments: ["guides/*.md"],
hideGenerator: true,
cleanOutputDir: true,
navigationLinks: {
GitHub: "https://github.com/react18-tools/nextjs-themes",
},
navigation: {
includeFolders: false,
},
plugin: [
"typedoc-plugin-mdn-links",
"typedoc-plugin-rename-defaults",
"typedoc-plugin-missing-exports",
"typedoc-plugin-zod",
// "typedoc-plugin-extras",
],
};