-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.config.js
62 lines (61 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
//@ts-check
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
"$schema": "https://typedoc.org/schema.json",
entryPoints: [
"./src/docs-index.ts",
// "./src/NDArray-class.ts",
// "./src/modules/random.ts",
// "./src/modules/constructors.ts",
// "./src/modules/grammar.ts",
],
out: "docs",
plugin: [
// "@mxssfd/typedoc-theme",
"typedoc-plugin-missing-exports",
// "typedoc-plugin-script-inject",
// "./typedoc-plugin-module-theme.js",
// "./typedoc-plugin-expand.js",
// "typedoc-github-wiki-theme",
// "typedoc-default-themes",
// "typedoc-theme-hierarchy",
// "typedoc-plugin-merge-modules",
],
// "placeInternalsInOwningModule": true,
// theme: "module",
internalModule: "(internals)",
// scriptSrc: "injected.js",
// theme: "my-theme",
includes: "./docs-src",
// version: "1.0.0",
// basePath: "./src",
// mergeModulesRenameDefaults: true,
// mergeModulesMergeMode: "project",
// readme: "./docs-readme.md",
readme: "none",
kindSortOrder: [
"Reference",
"Project",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature",
"Module"
]
}