-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtsconfig.docs.json
More file actions
36 lines (36 loc) · 934 Bytes
/
tsconfig.docs.json
File metadata and controls
36 lines (36 loc) · 934 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
{
"extends": "./tsconfig.build.json",
"include": [
"./packages/client/src",
"./packages/devtools/src",
"./packages/devtools-node/src",
"./packages/loader/src",
"./packages/runtime/src",
"./packages/server/src"
],
"compilerOptions": {
"jsx": "preserve",
"lib": ["DOM", "ES2020"],
"skipLibCheck": true
},
"typedocOptions": {
"name": "ComposeDB API",
"readme": "none",
"entryDocument": "index.md",
"entryPoints": [
"./packages/client/src/index.ts",
"./packages/devtools/src/index.ts",
"./packages/devtools-node/src/index.ts",
"./packages/loader/src/index.ts",
"./packages/runtime/src/index.ts",
"./packages/server/src/index.ts"
],
"disableSources": true,
"excludeExternals": true,
"excludeInternal": true,
"excludePrivate": true,
"githubPages": false,
"hideBreadcrumbs": true,
"hideInPageTOC": true
}
}