-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc.json
33 lines (33 loc) · 1004 Bytes
/
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
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-remark",
"typedoc-plugin-mdn-links",
"typedoc-plugin-rename-defaults",
"./custom-typedoc-plugin.js"
],
"out": "./api",
"tsconfig": "tsconfig.json",
"outputFileStrategy": "modules",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "htmlTable",
"propertyMembersFormat": "table",
"theme": "custom-markdown-theme",
"parametersFormat": "table",
"entryPoints": ["src"],
"entryPointStrategy": "expand",
"readme": "./public/docs/README.md",
"gitRevision": "main",
"githubPages": false,
"mergeReadme": true,
"useCodeBlocks": true,
"expandObjects": true,
"remarkPlugins": [
"unified-prettier",
["remark-github", { "repository": "https://github.com/phun-ky/speccer" }],
["remark-toc", { "heading": "Table of Contents", "maxDepth": 3 }]
]
}