forked from o1-labs/o1js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
typedoc.json
50 lines (49 loc) · 1.35 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
{
"name": "o1js",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-merge-modules"],
// https://typedoc.org/options
"tsconfig": "tsconfig.web.json",
"out": "o1js-reference",
"cleanOutputDir": true,
"githubPages": false,
"exclude": [
"dist/**/*",
"src/mina-signer/**/*",
"src/bindings/**/*",
"src/examples/**/*",
"src/lib/provable/+(core|test)/**/*",
"src/**/*(test|unit-test).ts",
"src/lib/provable/provable.ts"
],
"entryPoints": [
"src/index.ts",
"src/lib/provable/field.ts",
"src/lib/provable/bool.ts",
"src/lib/provable/group.ts",
"src/lib/provable/int.ts",
"src/lib/provable/scalar.ts",
"src/lib/provable/merkle-list.ts",
"src/lib/provable/merkle-map.ts",
"src/lib/provable/merkle-tree.ts",
"src/lib/provable/types/provable-intf.ts"
],
"entryPointStrategy": "resolve",
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeReferences": true,
// https://www.typedoc-plugin-markdown.org/options
"fileExtension": ".mdx",
"hidePageHeader": true,
"hidePageTitle": true,
"excludeGroups": true,
"hideBreadcrumbs": true,
"useCodeBlocks": true,
"parametersFormat": "list",
"propertiesFormat": "list",
"typeDeclarationFormat": "list",
"indexFormat": "table",
"mergeReadme": true,
"expandParameters": true,
"expandObjects": true,
}