-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
typedoc.config.js
53 lines (53 loc) · 1.4 KB
/
typedoc.config.js
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
/**
* @type { import('typedoc').TypeDocOptions & import('typedoc-plugin-markdown').PluginOptions }
**/
module.exports = {
hostedBaseUrl: "https://www.electron.build",
name: "Electron-Builder",
entryPoints: ["packages/*"],
entryPointStrategy: "packages",
cleanOutputDir: false,
flattenOutputFiles: true,
plugin: [
"typedoc-plugin-markdown",
// "./scripts/renderer/out/customRendererPlugin.js"
],
excludeExternals: true,
excludePrivate: true,
excludeProtected: true,
excludeNotDocumented: false,
includeVersion: true,
hideGroupHeadings: true,
hidePageTitle: true,
disableSources: true,
hidePageHeader: true,
useHTMLEncodedBrackets: true,
preserveAnchorCasing: true,
// groupOrder: ["source-order"],
// "readme": "none",
// "sort": ["kind"],
// "kindSortOrder": ["Function", "Interface", "TypeAlias"],
// indexFormat: "table",
// parametersFormat: "table",
// interfacePropertiesFormat: "table",
// classPropertiesFormat: "table",
// enumMembersFormat: "table",
// typeDeclarationFormat: "table",
// propertyMembersFormat: "table",
tableColumnSettings: {
hideDefaults: false,
hideInherited: false,
hideModifiers: true,
hideOverrides: true,
hideSources: true,
hideValues: false,
leftAlignHeaders: false,
},
out: "./docs",
visibilityFilters: {
protected: false,
private: false,
inherited: false,
external: false,
},
}