-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
55 lines (55 loc) · 2.35 KB
/
typedoc.json
File metadata and controls
55 lines (55 loc) · 2.35 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "https://typedoc.org/schema.json",
"cleanOutputDir": true,
"entryPoints": [
"./src/attributes/attributes.ts",
"./src/css/css.ts",
"./src/dataset/dataset.ts",
"./src/elements/elements.ts",
"./src/styles/styles.ts",
"./src/dom.ts",
"./src/types.ts"
],
"exclude": ["**/**test.ts", "src/internal/**", "src/testing.ts"],
"excludeInternal": true,
"excludeNotDocumented": true,
"externalSymbolLinkMappings": {
"arcade": {
"Primitive": "https://laserware.github.io/arcade/types/Primitive.html",
"WithNullValues": "https://laserware.github.io/arcade/types/WithNullValues.html",
"WithUndefinedValues": "https://laserware.github.io/arcade/types/WithUndefinedValues.html"
},
"@laserware/arcade": {
"KeysOf": "https://laserware.github.io/arcade/types/KeysOf.html",
"OneOrManyOf": "https://laserware.github.io/arcade/types/OneOrManyOf.html",
"Primitive": "https://laserware.github.io/arcade/types/Primitive.html",
"WithNullValues": "https://laserware.github.io/arcade/types/WithNullValues.html",
"WithUndefinedValues": "https://laserware.github.io/arcade/types/WithUndefinedValues.html"
},
"typescript": {
"CSSStyleDeclaration": "https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration",
"Document": "https://developer.mozilla.org/en-US/docs/Web/API/Document",
"Node": "https://developer.mozilla.org/en-US/docs/Web/API/Node",
"ChildNode": "https://developer.mozilla.org/en-US/docs/Web/API/Node",
"ParentNode": "https://developer.mozilla.org/en-US/docs/Web/API/Node",
"Element": "https://developer.mozilla.org/en-US/docs/Web/API/Element",
"EventTarget": "https://developer.mozilla.org/en-US/docs/Web/API/EventTarget",
"HTMLElement": "https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement",
"SVGElement": "https://developer.mozilla.org/en-US/docs/Web/API/SVGElement"
}
},
"headings": { "readme": false, "document": false },
"hideGenerator": true,
"navigation": {
"compactFolders": true,
"excludeReferences": false,
"includeCategories": false,
"includeFolders": false,
"includeGroups": false
},
"navigationLinks": { "GitHub": "https://github.com/laserware/dominator" },
"out": "site",
"readme": "README.md",
"useFirstParagraphOfCommentAsSummary": true,
"useTsLinkResolution": false
}