-
Notifications
You must be signed in to change notification settings - Fork 9
/
typedoc.json
47 lines (38 loc) · 1.34 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"entryPoints": [
"./docs/doc-pages/",
"./packages/js-draw",
"./packages/math",
"./packages/material-icons"
],
"entryPointStrategy": "packages",
"name": "js-draw",
"out": "docs/typedoc/",
"plugin": ["@js-draw/typedoc-extensions"],
"exclude": ["**/*.test.ts", "node_modules/**", "**/dist/**", "**/dist-test/**", "src/testing/"],
"includeBaseDirectory": "docs/",
"theme": "js-draw-theme",
"sidebarReplacements": {
"packages/js-draw/src/lib": "js-draw - {{version}}",
"packages/math/src/lib": "@js-draw/math - {{version}}",
"packages/material-icons/src/lib": "@js-draw/material-icons - {{version}}"
},
"redirects": {
"modules/Additional_Documentation.CustomizingTools__.html": "documents/Guides.Customizing_existing_tools.html",
"modules/Additional_Documentation.MigratingToVersion1__.html": "documents/Guides.Migrating_to_version_1.html",
"modules/Additional_Documentation.WritingATheme__.html": "documents/Guides.Writing_a_theme.html",
"modules/js_draw.html": "modules/js-draw.html",
"modules/_js_draw_material_icons.html": "modules/_js-draw_material-icons.html"
},
"sort": ["source-order"],
"excludePrivate": true,
"excludeInternal": true,
"includeVersion": false,
"commentStyle": "all",
"tsconfig": "tsconfig-typedoc.json",
"validation": {
"notExported": false,
"invalidLink": true,
"notDocumented": false
}
}