-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypedoc.json
28 lines (28 loc) · 1.12 KB
/
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": ["lib/index.ts"],
"out": "docs",
"plugin": ["typedoc-github-theme"],
"excludeExternals": true,
"externalSymbolLinkMappings": {
"bun-types": {
"*": "https://bun.sh/docs"
},
"@types/node": {
"*": "https://bun.sh/docs/runtime/nodejs-apis"
},
"typescript": {
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
"Error": "https://developer.mozilla.org/en-US/dozcs/Web/JavaScript/Reference/Global_Objects/Error",
"Date": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date",
"Record": "https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type",
"ArrayBufferLike": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray",
"Uint8Array": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array",
"URL": "https://developer.mozilla.org/en-US/docs/Web/API/URL"
}
},
"navigationLinks": {
"GitHub": "https://github.com/itss0n1c/clipgen",
"S0n1c": "https://s0n1c.ca"
},
"sort": ["documents-first", "kind"]
}