-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
60 lines (60 loc) · 2.35 KB
/
typedoc.json
File metadata and controls
60 lines (60 loc) · 2.35 KB
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
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"name": "API Reference",
"entryPointStrategy": "packages",
"entryPoints": ["packages/*"],
"exclude": ["packages/tsconfig"],
"packageOptions": {
"entryPoints": ["src/**/*.ts"],
"exclude": ["src/**/index.ts"]
},
"plugin": ["typedoc-plugin-markdown", "./scripts/typedoc-plugin-evolu.mts"],
"publicPath": "/docs/api-reference",
"fileExtension": ".mdx",
"githubPages": false,
"hideBreadcrumbs": false,
"entryFileName": "page",
"mergeReadme": false,
"hidePageHeader": true,
"hidePageTitle": true,
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true,
"readme": "none",
"hideGroupHeadings": true,
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "list",
"classPropertiesFormat": "list",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"excludeScopesInPaths": true,
"router": "member",
"formatWithPrettier": false,
"useHTMLAnchors": true,
"cleanOutputDir": true,
"headings": {
"readme": false,
"document": false
},
"treatWarningsAsErrors": true,
"outputs": [
{
"name": "markdown",
"path": "./.generated/evolu-docs/api-reference"
}
],
"externalSymbolLinkMappings": {
"typescript": {
"ArrayBuffer": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
"AsyncDisposable": "https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management",
"AsyncDisposableStack": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncDisposableStack",
"Disposable": "https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management",
"DisposableStack": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DisposableStack",
"Iterable": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_iterable_protocol",
"Omit": "https://www.typescriptlang.org/docs/handbook/utility-types.html#omittype-keys",
"PromiseLike": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#thenables"
}
}
}