-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
28 lines (28 loc) · 859 Bytes
/
typedoc.json
File metadata and controls
28 lines (28 loc) · 859 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
{
"$schema": "https://typedoc.org/schema.json",
"cleanOutputDir": true,
"entryPoints": ["./src/index.ts"],
"exclude": ["**/**test.ts"],
"excludeInternal": true,
"excludeNotDocumented": true,
"externalSymbolLinkMappings": {
"redux": {
"Store": "https://redux.js.org/api/store",
"UnknownAction": "https://redux.js.org/tutorials/fundamentals/part-2-concepts-data-flow#actions"
}
},
"headings": { "readme": false, "document": false },
"hideGenerator": true,
"navigation": {
"compactFolders": true,
"excludeReferences": true,
"includeCategories": true,
"includeFolders": true,
"includeGroups": false
},
"markdownLinkExternal": true,
"navigationLinks": { "GitHub": "https://github.com/laserware/sword" },
"out": "site",
"readme": "./README.md",
"useFirstParagraphOfCommentAsSummary": true
}