We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a23f4f commit 8fae9c1Copy full SHA for 8fae9c1
tsconfig.json
@@ -21,5 +21,29 @@
21
],
22
"exclude": [
23
"node_modules"
24
- ]
+ ],
25
+ "typedocOptions": {
26
+ "mode": "file",
27
+ "out": "./website/docs/api",
28
+ "plugin": ["typedoc-plugin-markdown"],
29
+ "exclude": [
30
+ "**/renderer/**",
31
+ "**/utils/**",
32
+ "**/widgets/**/index.ts",
33
+ "**/widgets/config.ts",
34
+ "**/widgets/nativeWidget.ts",
35
+ "**/widgets/widgetMap.ts",
36
+ "vueLoader.ts",
37
+ "index.ts"
38
39
+ "excludeExternals": true,
40
+ "excludeNotExported": true,
41
+ "excludePrivate": true,
42
+ "excludeProtected": true,
43
+ "includeDeclarations": true,
44
+ "hideBreadcrumbs": true,
45
+ "hideSources": true,
46
+ "theme": "docusaurus2",
47
+ "stripInternal": true
48
+ }
49
}
0 commit comments