-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
27 lines (27 loc) · 762 Bytes
/
typedoc.json
File metadata and controls
27 lines (27 loc) · 762 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./src/index.ts",
"./src/types/Config.types.ts",
"./src/types/Options.types.ts",
"./src/tasks/JobScheduler.ts",
"./src/tasks/JobLoader.ts",
"./src/tasks/JobRunner.ts"
],
"basePath": "./src",
"readme": "README.md",
"customCss": "./assets/typedoc.css",
"entryPointStrategy": "expand",
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"categorizeByGroup": true,
"sort": [
"alphabetical"
],
"navigationLinks": {
"GitHub": "https://github.com/mtakla/copypoc",
"NPM": "https://www.npmjs.com/package/@mtakla/cronops"
},
"out": "build/docs"
}