-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
34 lines (34 loc) · 984 Bytes
/
typedoc.json
File metadata and controls
34 lines (34 loc) · 984 Bytes
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"packages/core/src/index.ts",
"packages/sdk/src/index.ts",
"packages/issuer/src/index.ts",
"packages/redis/src/index.ts"
],
"out": "docs/api",
"exclude": ["**/*.test.ts", "**/*.spec.ts", "**/test/**", "**/tests/**", "**/__tests__/**"],
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"readme": "none",
"plugin": [],
"name": "zk-id API Reference",
"includeVersion": true,
"sort": ["source-order"],
"kindSortOrder": ["Function", "Class", "Interface", "TypeAlias", "Variable", "Enum"],
"categorizeByGroup": true,
"categoryOrder": ["Core", "SDK", "Issuer", "Redis", "*"],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"searchInComments": true,
"validation": {
"notExported": true,
"invalidLink": false,
"notDocumented": false
},
"tsconfig": "tsconfig.base.json",
"skipErrorChecking": true
}