-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
41 lines (41 loc) · 1.09 KB
/
typedoc.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"entryPoints": ["src/index.ts"],
"out": "api/textmode.synth.js",
"readme": "none",
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": false,
"includeVersion": false,
"disableSources": true,
"useCodeBlocks": true,
"jsDocCompatibility": {
"exampleTag": false
},
"tsconfig": "tsconfig.json",
"exclude": ["**/node_modules/**"],
"sort": ["source-order"],
"logLevel": "Verbose",
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-frontmatter",
"typedoc-vitepress-theme",
"./typedoc-plugins/accessor-signature-order.js",
"./typedoc-plugins/example-author.js",
"./typedoc-plugins/custom-frontmatter.js"
],
"frontmatterGlobals": {
"layout": "doc",
"editLink": true
},
"frontmatterCommentTags": ["author", "since", "deprecated"],
"preserveFrontmatterCommentTags": false,
"frontmatterNamingConvention": "camelCase",
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"cleanOutputDir": true
}