forked from lilBunnyRabbit/task-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
28 lines (26 loc) · 866 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
{
"entryPoints": ["./src/index.ts", "./README.md"],
"exclude": ["./src/core/flow-controller"],
"excludeExternals": false,
"excludePrivate": true,
"excludeReferences": false,
"entryPointStrategy": "resolve",
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": true
},
"readme": "./README.md",
"githubPages": true,
"hideGenerator": true,
"titleLink": "http://lilbunnyrabbit.github.io/task-manager",
"navigationLinks": {
"Examples": "http://lilbunnyrabbit.github.io/task-manager/#/examples",
"GitHub": "https://github.com/lilBunnyRabbit/task-manager",
"NPM": "https://www.npmjs.com/package/@lilbunnyrabbit/task-manager"
},
"out": "./web/public/docs/api/v1.0.0",
"name": "@lilbunnyrabbit/task-manager@1.0.0",
"customJs": "./web/public/docs/api/inject-versions.js"
}