-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathtypedoc.json
More file actions
31 lines (31 loc) · 784 Bytes
/
typedoc.json
File metadata and controls
31 lines (31 loc) · 784 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
{
"out": "sdk_ref",
"plugin": ["typedoc-plugin-markdown", "./scripts/CustomMarkdownTheme.js"],
"exclude": ["**/*.spec.ts"],
"entryPoints": [
"src/index.ts",
"src/charts.ts",
"src/consts.ts",
"src/messaging.ts",
"src/sandbox.ts"
],
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"navigation": {
"includeGroups": false,
"includeCategories": false
},
"outputFileStrategy": "modules",
"readme": "none",
"disableSources": true,
// typedoc-plugin-markdown options
"classPropertiesFormat": "table",
"typeDeclarationFormat": "table",
"enumMembersFormat": "table",
"parametersFormat": "table",
"expandParameters": true,
"useCodeBlocks": true,
"hidePageTitle": true,
"hideBreadcrumbs": true
}