-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathtypedoc.json
More file actions
31 lines (31 loc) · 857 Bytes
/
typedoc.json
File metadata and controls
31 lines (31 loc) · 857 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"packages/quickjs-emscripten",
"packages/quickjs-emscripten-core",
"packages/quickjs-ffi-types",
"packages/variant-*"
],
"entryPointStrategy": "packages",
"out": "doc",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-inline-sources", "typedoc-plugin-remark"],
"readme": "README.md",
"name": "quickjs-emscripten",
"navigationLinks": {
"Readme": "README.md",
"Packages": "packages.md"
},
"hideGenerator": false,
"remarkPlugins": [
{
"applyTo": ["Class", "Interface", "Enum", "TypeAlias", "Function"],
"plugins": [
[
"remark-insert-headings",
{ "text": "Contents", "position": "start", "minHeadingCount": 1 }
],
["remark-toc", { "maxDepth": 3, "tight": true }]
]
}
]
}