-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtypedoc.json
More file actions
28 lines (28 loc) · 759 Bytes
/
typedoc.json
File metadata and controls
28 lines (28 loc) · 759 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
28
{
"$schema": "https://typedoc.org/schema.json",
"plugin": ["typedoc-plugin-markdown"],
"entryPoints": [
"./src/index.ts",
"./src/angular/index.ts",
"./src/drizzle/index.ts",
"./src/kysely/index.ts",
"./src/react/index.ts",
"./src/vite/index.ts",
"./src/vue/index.ts"
],
"out": "docs/reference",
"githubPages": false,
"hidePageHeader": true,
"headings": { "readme": false },
"pageTitleTemplates": { "index": "Reference" },
"readme": "none",
"entryFileName": "index",
"useCodeBlocks": true,
"expandObjects": true,
"parametersFormat": "table",
"typeDeclarationFormat": "table",
"typeAliasPropertiesFormat": "table",
"kindSortOrder": ["Class", "TypeAlias", "Enum", "Variable"],
"excludeInternal": true,
"excludeProtected": true
}