-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
34 lines (34 loc) · 950 Bytes
/
typedoc.json
File metadata and controls
34 lines (34 loc) · 950 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
29
30
31
32
33
34
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/app"],
"entryPointStrategy": "expand",
"out": "docs",
"exclude": [
"**/*.spec.ts",
"**/node_modules/**",
"**/dist/**",
"**/coverage/**"
],
"excludePrivate": false,
"excludeProtected": false,
"excludeInternal": false,
"includeVersion": true,
"sort": ["source-order"],
"groupOrder": ["Classes", "Functions", "Interfaces", "*"],
"categorizeByGroup": true,
"readme": "README.md",
"name": "Portfolio - API Documentation",
"navigationLinks": {
"Live Demo": "https://portfolio.dev2k.org",
"Coverage": "https://portfolio.dev2k.org/coverage",
"GitHub": "https://github.com/KosMaster87/Portfolio"
},
"plugin": ["typedoc-plugin-missing-exports"],
"treatWarningsAsErrors": false,
"treatValidationWarningsAsErrors": false,
"validation": {
"notExported": false,
"invalidLink": false,
"notDocumented": false
}
}