-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 902 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 902 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
{
"extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
"module": "ESNext",
"declaration": true,
"composite": true,
"declarationMap": true,
"sourceMap": true,
"lib": ["ES2022", "DOM"],
"baseUrl": ".",
"paths": {
"@doc-agent/core": ["packages/core/src"],
"@doc-agent/core/*": ["packages/core/src/*"],
"@doc-agent/extract": ["packages/extract/src"],
"@doc-agent/extract/*": ["packages/extract/src/*"],
"@doc-agent/storage": ["packages/storage/src"],
"@doc-agent/storage/*": ["packages/storage/src/*"],
"@doc-agent/vector-store": ["packages/vector-store/src"],
"@doc-agent/vector-store/*": ["packages/vector-store/src/*"]
}
},
"exclude": ["node_modules"],
"files": []
}