-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
45 lines (45 loc) · 1.34 KB
/
typedoc.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"$schema": "https://typedoc.org/schema.json",
"name": "AdaptiveShell",
"categorizeByGroup": false,
"entryPoints": ["apps/*", "packages/*"],
"entryPointStrategy": "packages",
"tsconfig": "./tsconfig.json",
"plugin": [
"typedoc-material-theme",
"typedoc-plugin-extras",
"typedoc-plugin-merge-modules",
"typedoc-plugin-rename-defaults",
"typedoc-plugin-dt-links",
"typedoc-plugin-missing-exports",
"typedoc-plugin-inline-sources"
],
"themeColor": "#3C93F0",
"favicon": ".github/img/favicon.png",
"basePath": "./",
"mergeModulesRenameDefaults": true,
"mergeModulesMergeMode": "module",
"exclude": [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/coverage/**",
"**/test/**",
"**/__tests__/**",
"**/*.spec.ts",
"**/*.test.ts"
],
"includeVersion": true,
"out": "./docs",
"readme": "./README.md",
"projectDocuments": ["./CONTRIBUTING.md", "./LICENSE"],
"excludeExternals": true,
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"externalPattern": ["**/node_modules/**", ".*+(apps|packages)(/[^/]+)/.*"],
"sourceLinkExternal": true,
"footerLastModified": true,
"useTsLinkResolution": true,
"githubPages": true
}