-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
40 lines (40 loc) · 1 KB
/
typedoc.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"out": "./docs",
"plugin": [],
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"includeVersion": true,
"readme": "README.md",
"name": "SQL Storage Adapter",
"navigationLinks": {
"Frame.dev": "https://frame.dev",
"GitHub": "https://github.com/framersai/sql-storage-adapter",
"NPM": "https://www.npmjs.com/package/@framers/sql-storage-adapter"
},
"sort": ["source-order", "required-first"],
"kindSortOrder": [
"Class",
"Interface",
"TypeAlias",
"Function",
"Variable",
"Enum"
],
"categorizeByGroup": true,
"defaultCategory": "Other",
"categoryOrder": [
"Adapters",
"Types",
"Utilities",
"Errors",
"*"
],
"gitRevision": "master",
"sourceLinkTemplate": "https://github.com/framersai/sql-storage-adapter/blob/{gitRevision}/{path}#L{line}",
"cleanOutputDir": true,
"hideGenerator": false,
"searchInComments": true
}