-
Notifications
You must be signed in to change notification settings - Fork 47
/
typedoc.json
60 lines (56 loc) · 1.44 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
{
// https://typedoc.org/options/
"categoryOrder": [
"Compute Engine",
"Boxed Expression",
"Pattern Matching",
"Rules",
"Assumptions",
"Compiling",
"Definitions",
"Latex Parsing and Serializing",
"*"
],
"out": "./temp-docs",
"compilerOptions": {
// "esModuleInterop": true,
// More lenient...
"noImplicitAny": false,
"strictNullChecks": false
},
// "includes": "./src/compute-engine/**/*",
"externalPattern": ["**/node_modules/**", "./cortex/**"],
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeReferences": true,
"name": "Compute Engine",
"disableSources": true,
"disableGit": true,
"stripYamlFrontmatter": true,
"outputFileStrategy": "modules",
"entryPoints": [
"./src/compute-engine/public.ts",
"./src/math-json/math-json-format.ts",
"./src/common/signals.ts"
],
"readme": "none",
"excludeExternals": true,
"sort": ["source-order"],
// https://typedoc-plugin-markdown.org/options
"plugin": [
"typedoc-plugin-no-inherit",
"typedoc-plugin-markdown",
"./plugins/grok-theme/index.js"
],
"theme": "grok-theme",
"namedAnchors": true,
"hidePageHeader": true,
"hidePageTitle": true,
"hideBreadcrumbs": true,
"excludeGroups": true,
"useCodeBlocks": true,
"parametersFormat": "list", // table | list
"propertiesFormat": "list", // table | list
"typeDeclarationFormat": "list" // table | list
}