-
-
Notifications
You must be signed in to change notification settings - Fork 281
/
typedoc.json
42 lines (40 loc) · 1.1 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
{
// https://typedoc.org/options/
"out": "./temp-docs",
"compilerOptions": {
// "esModuleInterop": true,
// More lenient...
"noImplicitAny": false,
"strictNullChecks": false
},
// "includes": "./src/compute-engine/**/*",
"externalPattern": ["**/node_modules/**"],
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeReferences": true,
"name": "Mathfield",
"disableSources": true,
"disableGit": true,
"stripYamlFrontmatter": true,
"outputFileStrategy": "modules",
"entryPoints": ["./src/mathlive.ts"],
"readme": "none",
"excludeExternals": true,
// https://typedoc-plugin-markdown.org/options
"plugin": [
"typedoc-plugin-no-inherit",
"typedoc-plugin-markdown",
"./plugins/grok-theme/index.mjs"
],
"theme": "grok-theme",
"useHTMLAnchors": true,
"hidePageHeader": true,
"hidePageTitle": true,
"hideBreadcrumbs": true,
"excludeGroups": true,
"useCodeBlocks": true,
"parametersFormat": "list", // table | list
"propertiesFormat": "list", // table | list
"typeDeclarationFormat": "list" // table | list
}