-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypedoc.json
25 lines (25 loc) · 852 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
{
"name": "parallel-universe",
"includeVersion": true,
"excludePrivate": true,
"excludeExternals": true,
"excludeInternal": true,
"disableSources": true,
"hideGenerator": true,
"readme": "none",
"tsconfig": "./tsconfig.json",
"customCss": "./node_modules/typedoc-custom-css/custom.css",
"entryPoints": [
"./src/main/index.ts"
],
"externalSymbolLinkMappings": {
"global": {
"Error": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error",
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise"
},
"typescript": {
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
"AbortSignal": "https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal"
}
}
}