-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtypedoc.json
39 lines (39 loc) · 966 Bytes
/
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
{
"entryPoints": [
"src/modules/**/routes.ts",
"src/modules/**/controllers.ts",
"src/modules/**/*.service.ts",
"src/modules/**/repository.ts",
"src/modules/**/types.ts",
"src/modules/apiRoutes.ts",
"src/modules/diConfig.ts",
"src/common/createController.ts",
"src/common/createRoutes.ts",
"src/common/operation.ts",
"src/common/baseRepository.ts"
],
"out": "docs",
"includeVersion": true,
"exclude": [
"**/node_modules/**",
"**/tests/**",
"**/*.spec.ts",
"**/*.test.ts"
],
"excludePrivate": false,
"excludeProtected": false,
"excludeInternal": false,
"excludeNotDocumented": false,
"tsconfig": "tsconfig.json",
"readme": "README.md",
"name": "Todo API Documentation",
"hideGenerator": true,
"entryPointStrategy": "expand",
"visibilityFilters": {
"protected": true,
"private": true,
"inherited": true,
"external": true
},
"treatWarningsAsErrors": false
}