-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
55 lines (55 loc) · 1.45 KB
/
typedoc.json
File metadata and controls
55 lines (55 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"entryPoints": ["src/index.ts"],
"out": "build/docs",
"name": "@photostructure/sqlite",
"includeVersion": false,
"excludePrivate": true,
"excludeInternal": true,
"readme": "README.md",
"githubPages": true,
"exclude": [
"**/*.test.ts",
"**/*.spec.ts",
"**/test/**",
"**/api-compatibility.test.ts"
],
"tsconfig": "tsconfig.build.json",
"navigationLinks": {
"GitHub": "https://github.com/photostructure/node-sqlite",
"NPM": "https://www.npmjs.com/package/@photostructure/sqlite"
},
"projectDocuments": [
"doc/getting-started.md",
"doc/migrating-from-node-sqlite.md",
"doc/migrating-from-better-sqlite3.md",
"doc/working-with-data.md",
"doc/extending-sqlite.md",
"doc/advanced-patterns.md",
"doc/api-reference.md",
"doc/features.md",
"doc/library-comparison.md",
"doc/internal/architecture.md",
"doc/internal/async-design.md",
"doc/internal/threading.md",
"doc/internal/release-process.md",
"doc/internal/worker-implementation.md",
"doc/internal/development.md",
"doc/reference/sqlite-api.md",
"doc/reference/sqlite-api-core.md",
"doc/reference/sqlite-api-statements.md",
"doc/reference/sqlite-api-extensions.md",
"doc/reference/sqlite-api-advanced.md",
"doc/reference/sqlite-api-memory-config.md"
],
"highlightLanguages": [
"typescript",
"javascript",
"c++",
"cpp",
"c",
"json",
"bash",
"sql",
"yaml"
]
}