-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathtypedoc.json
63 lines (61 loc) · 1.76 KB
/
typedoc.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
// typedoc options
"name": "Developer Guide",
"outputs": [
{
"name": "html",
"path": "./devguide-html"
},
{
"name": "markdown",
"path": "./devguide"
}
],
"entryPoints": [
"./packages/typedoc-plugin-markdown",
"./packages/typedoc-plugin-frontmatter",
"./packages/typedoc-plugin-remark",
"./packages/typedoc-github-wiki-theme",
"./packages/typedoc-gitlab-wiki-theme",
"./packages/typedoc-vitepress-theme",
"./packages/docusaurus-plugin-typedoc"
],
"plugin": [
"./packages/typedoc-plugin-markdown/dist/index.js",
"./devtools/typedoc-plugins/typedoc-default-values.mjs",
"./devtools/typedoc-plugins/typedoc-replace-filetree.mjs",
"./devtools/typedoc-plugins/typedoc-symbols.mjs"
],
"sortEntryPoints": false,
"cleanOutputDir": true,
"entryPointStrategy": "packages",
"excludePrivate": false,
"readme": "none",
"projectDocuments": ["./GETTING_STARTED.md"],
"packageOptions": {
"includeVersion": false,
"excludePrivate": false,
"readme": "./internal-docs/introduction.md",
"sortEntryPoints": false,
"sort": "source-order",
"excludeExternals": true,
"gitRevision": "main"
},
// typedoc-plugin-markdown options
"mergeReadme": true,
"outputFileStrategy": "members",
"membersWithOwnFile": ["Class", "Interface"],
"hidePageHeader": true,
"hideGroupHeadings": false,
"expandObjects": false,
"expandParameters": false,
"useCodeBlocks": false,
"parametersFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"interfacePropertiesFormat": "list",
"indexFormat": "table",
"tableColumnSettings": { "hideSources": true },
"sanitizeComments": true
}