-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
27 lines (27 loc) · 969 Bytes
/
tsconfig.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
{
"extends": "./node_modules/config-galore/tsconfig.json",
"include": ["src"],
"exclude": ["node_modules", "lib", "es6", "es2020", "esm", "docs", "README.md"],
"typedocOptions": {
"entryPoints": [
"src/json-crdt/index.ts",
"src/json-crdt/codec/structural/binary/index.ts",
"src/json-crdt/codec/structural/compact/index.ts",
"src/json-crdt/codec/structural/verbose/index.ts",
"src/json-crdt/codec/indexed/binary/index.ts",
"src/json-crdt/codec/sidecar/binary/index.ts",
"src/json-crdt-patch/codec/verbose/index.ts",
"src/json-crdt-patch/codec/compact/index.ts",
"src/json-crdt-patch/codec/binary/index.ts",
"src/json-pack/index.ts",
"src/json-patch/index.ts",
"src/json-patch-ot/index.ts",
"src/json-pointer/index.ts",
"src/json-rpc/index.ts",
"src/json-rx/index.ts",
"src/json-type/index.ts",
"src/json-random/index.ts"
],
"out": "typedocs"
}
}