-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.docs.json
66 lines (66 loc) · 1.43 KB
/
tsconfig.docs.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"allowJs": true,
/* Report errors in .js files. */
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"baseUrl": "..",
"paths": {
"*": [
"*"
]
},
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
],
"typedocOptions": {
"entryPoints": [
"src/clients",
"src/components",
"src/models",
"src/config"
],
"out": "./docs/target/ts-docs",
"exclude": [
"**/*+(**Impl|**PostCommand|**WsCommand).ts",
"**/decoders/*",
"**/utils/*",
"**/clients/gateway/**",
"**/*+(**Utils).ts"
],
"excludePrivate": true,
"excludeInternal": true,
"plugin" : ["typedoc-plugin-external-module-map", "typedoc-plugin-missing-exports"],
"external-modulemap" : ".*\/(clients|components|models|config)[\\w\\-_]+\/",
"categorizeByGroup": true,
"validation": {
"notExported": false
},
"categoryOrder": [
"Service",
"Common",
"Admin Service",
"Agent Service",
"Sequence Manager Service",
"Sequencer Service",
"Location Service",
"Event Service",
"Command Service",
"Config Service",
"Logger Service",
"Configuration",
"Others"
]
}
}