-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
28 lines (28 loc) · 977 Bytes
/
typedoc.json
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./src/",
"./src/v1/"
// the automatically generated docs from V2 docs is not great at the moment
// try this again after [email protected]
// "./src/v2/**/*.ts"
],
"projectDocuments": [
// include the extra V2 documents
// 2024-09-04:
// a bit confusing as they show up alongside V1 docs AND there is no generated README.md either, but better than nothing
"./src/v2/*.md",
"./src/v2/**/*.md"
],
"exclude": ["**/tests/**/*"],
//"entryPointStrategy":"expand",
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeReferences": false,
"excludeExternals": true,
"out": "docs",
// we need to keep this one for Deno at the moment
// see https://stackoverflow.com/questions/64348009/how-to-make-typedoc-works-with-deno
"skipErrorChecking": true
}