-
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) · 884 Bytes
/
typedoc.json
File metadata and controls
28 lines (28 loc) · 884 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": {
"typescript": {
"KeyboardEvent": "https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent",
"MouseEvent": "https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent"
}
},
"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/stasis" },
"out": "site",
"readme": "./README.md",
"useFirstParagraphOfCommentAsSummary": true
}