-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtypedoc.json
More file actions
36 lines (36 loc) · 978 Bytes
/
typedoc.json
File metadata and controls
36 lines (36 loc) · 978 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
29
30
31
32
33
34
35
36
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/index.ts",
"src/core/index.ts",
"src/adapters/hono/index.ts",
"src/adapters/h3/index.ts",
"src/adapters/elysia/index.ts"
],
"out": "api-docs",
"json": "api-docs/spec.json",
"name": "@supabase/server",
"readme": "README.md",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"navigationLinks": {
"GitHub": "https://github.com/supabase/server"
},
"projectDocuments": [
"docs/getting-started.md",
"docs/core-primitives.md",
"docs/api-reference.md",
"docs/auth-modes.md",
"docs/environment-variables.md",
"docs/error-handling.md",
"docs/hono-adapter.md",
"docs/security.md",
"docs/ssr-frameworks.md",
"docs/typescript-generics.md"
],
"sort": ["source-order"],
"kindSortOrder": ["Function", "Class", "Interface", "TypeAlias", "Enum"],
"categorizeByGroup": true
}