-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathtypedoc.stateless.json
More file actions
53 lines (53 loc) · 1.23 KB
/
typedoc.stateless.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"$schema": "https://typedoc.org/schema.json",
"name": "@lightprotocol/stateless.js",
"entryPoints": ["js/stateless.js/src/index.ts"],
"out": "api-docs/stateless.js",
"exclude": [
"**/node_modules/**",
"**/*.test.ts",
"**/*.spec.ts",
"**/tests/**",
"**/dist/**",
"**/playwright.config.ts"
],
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"skipErrorChecking": true,
"readme": "js/stateless.js/README.md",
"tsconfig": "js/stateless.js/tsconfig.json",
"compilerOptions": {
"skipLibCheck": true
},
"plugin": [],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"categorizeByGroup": true,
"sort": ["source-order"],
"kindSortOrder": [
"Function",
"Class",
"Interface",
"TypeAlias",
"Variable",
"Enum"
],
"searchInComments": true,
"visibilityFilters": {
"protected": true,
"private": false,
"inherited": true,
"external": false
},
"hideGenerator": false,
"includeVersion": true,
"githubPages": true,
"navigationLinks": {
"Other Libraries": "../index.html",
"Documentation": "https://www.zkcompression.com",
"GitHub": "https://github.com/Lightprotocol/light-protocol"
}
}