-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
38 lines (38 loc) · 936 Bytes
/
typedoc.json
File metadata and controls
38 lines (38 loc) · 936 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
32
33
34
35
36
37
38
{
"entryPoints": ["s2/index.ts", "s2/plugins.ts"], // Adjust to your main TypeScript file(s)
"exclude": ["server/**/*", "node_modules", "nuxt.config.ts"],
"plugin": [
// https://github.com/Gerrit0/typedoc-plugin-coverage
"typedoc-plugin-coverage",
// https://github.com/Gerrit0/typedoc-plugin-vue
"typedoc-plugin-vue",
// https://github.com/Gerrit0/typedoc-plugin-mdn-links
"typedoc-plugin-mdn-links"
],
"out": "docs",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"excludeVueProperties": true,
"excludeNotDocumented": true,
"hideGenerator": true,
"disableSources": true,
"coverageOutputPath": "assets/doc-coverage.svg",
"highlightLanguages": [
"typescript",
"csv",
"rust",
"json",
"toml",
"bash",
"html",
"css",
"markdown",
"yaml",
"glsl",
"wgsl",
"vue",
"svelte",
]
}