forked from Interactions-as-a-Service/d1-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
54 lines (54 loc) · 1.68 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
50
51
52
53
54
{
"$schema": "https://typedoc.org/schema.json",
"cleanOutputDir": true,
"entryPoints": ["./src/index.ts"],
"exclude": ["./lib/**", "**/node_modules/**/*.*"],
"excludeInternal": true,
"excludePrivate": true,
"externalSymbolLinkMappings": {
"@cloudflare/workers-types": {
"D1Result": "https://github.com/cloudflare/workers-types/blob/master/overrides/d1.d.ts",
"D1Database": "https://github.com/cloudflare/workers-types/blob/master/overrides/d1.d.ts",
"D1PreparedStatement": "https://github.com/cloudflare/workers-types/blob/master/overrides/d1.d.ts"
},
"typescript": {
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
"Partial": "https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype",
"Pick": "https://www.typescriptlang.org/docs/handbook/utility-types.html#picktype-keys",
"Record": "https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type",
"Omit": "https://www.typescriptlang.org/docs/handbook/utility-types.html#omittype-keys",
"Extract": "https://www.typescriptlang.org/docs/handbook/utility-types.html#extracttype-union"
}
},
"githubPages": false,
"includeVersion": true,
"json": "./docs/api.json",
"name": "D1 Orm",
"out": "./docs",
"pluginPages": {
"pages": [
{
"title": "Changelog",
"source": "./CHANGELOG.md"
},
{
"title": "Guides",
"source": "./guides/index.md"
},
{
"title": "Query Building",
"source": "./guides/query-building.md"
},
{
"title": "Models",
"source": "./guides/models.md"
},
{
"title": "Upserting",
"source": "./guides/upserting.md"
}
],
"source": "",
"output": ""
}
}