-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
49 lines (49 loc) · 1.06 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./src/index.ts",
"./src/pg/index.ts",
"./src/mysql/index.ts",
"./src/sqlite/index.ts"
],
"out": "documentation",
"name": "Drizzle ORM Helpers documentation",
"disableSources": true,
"basePath": ".",
"cleanOutputDir": true,
"hideBreadcrumbs": true,
"publicPath": ".",
"useHTMLAnchors": true,
"readme": "none",
"githubPages": false,
"excludeGroups": false,
"hidePageHeader": true,
"entryFileName": "README",
"entryModule": "src",
"useCodeBlocks": true,
"outputFileStrategy": "modules",
"expandObjects": false,
"expandParameters": true,
"parametersFormat": "table",
"propertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"indexFormat": "table",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-remark"],
"remarkPlugins": [
"unified-prettier",
[
"remark-github",
{
"repository": "https://github.com/iolyd/drizzle-orm-helpers"
}
],
[
"remark-toc",
{
"heading": "Table of Contents",
"maxDepth": 3
}
]
]
}