-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
76 lines (76 loc) · 1.89 KB
/
Copy pathtypedoc.json
File metadata and controls
76 lines (76 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/index.ts"],
"entryPointStrategy": "expand",
"out": "docs/api",
"name": "Wildberries API TypeScript SDK",
"includeVersion": true,
"readme": "README.md",
"exclude": [
"**/node_modules/**",
"**tests/**",
"**dist/**",
"**/*.test.ts",
"**/*.spec.ts",
"**tools/**",
"**examples/**"
],
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": false,
"excludeExternals": true,
"excludeNotDocumented": false,
"skipErrorChecking": true,
"compilerOptions": {
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
"plugin": ["typedoc-plugin-missing-exports", "typedoc-plugin-markdown"],
"categorizeByGroup": true,
"categoryOrder": [
"SDK",
"Modules",
"Configuration",
"Errors",
"Types",
"*"
],
"sort": ["source-order"],
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": false
},
"searchInComments": true,
"navigationLinks": {
"Wildberries API Docs": "https://dev.wildberries.ru/",
"GitHub": "https://github.com/anthropics/wildberries-typescript-sdk",
"NPM": "https://www.npmjs.com/package/daytona-wildberries-typescript-sdk"
},
"sidebarLinks": {
"GitHub": "https://github.com/anthropics/wildberries-typescript-sdk",
"Documentation": "https://dev.wildberries.ru/"
},
"hideGenerator": false,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"searchGroupBoosts": {
"SDK": 2,
"Modules": 1.5
},
"hidePageHeader": true,
"entryFileName": "modules.md",
"readme": "none",
"parametersFormat": "table",
"propertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"indexFormat": "table",
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true
}