-
Notifications
You must be signed in to change notification settings - Fork 9
/
typedoc.json
28 lines (28 loc) · 1.18 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
{
"$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://workers-types.pages.dev/#D1Result",
"D1Database": "https://workers-types.pages.dev/#D1Database",
"D1PreparedStatement": "https://workers-types.pages.dev/#D1PreparedStatement"
},
"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"
}