-
Notifications
You must be signed in to change notification settings - Fork 354
/
tsconfig.json
123 lines (123 loc) · 2.85 KB
/
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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"compilerOptions": {
"target": "es2022",
"module": "esnext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"exactOptionalPropertyTypes": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./lib",
"tsBuildInfoFile": "./lib/.tsbuildinfo",
"incremental": true,
"composite": true,
"types": [],
"lib": ["ES2022", "DOM.AsyncIterable"]
},
"files": [],
"references": [
{
"path": "./apps/docs/tsconfig.json"
},
{
"path": "./packages/community/tsconfig.json"
},
{
"path": "./packages/providers/clip/tsconfig.json"
},
{
"path": "./packages/providers/huggingface/tsconfig.json"
},
{
"path": "./packages/providers/anthropic/tsconfig.json"
},
{
"path": "./packages/providers/deepinfra/tsconfig.json"
},
{
"path": "./packages/providers/portkey-ai/tsconfig.json"
},
{
"path": "./packages/providers/openai/tsconfig.json"
},
{
"path": "./packages/providers/groq/tsconfig.json"
},
{
"path": "./packages/providers/replicate/tsconfig.json"
},
{
"path": "./packages/providers/ollama/tsconfig.json"
},
{
"path": "./packages/cloud/tsconfig.json"
},
{
"path": "./packages/core/tsconfig.json"
},
{
"path": "./packages/core/tests/tsconfig.json"
},
{
"path": "./packages/llamaindex/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/examples/cloudflare-worker-agent/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/examples/nextjs-agent/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/examples/nextjs-edge-runtime/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/examples/nextjs-node-runtime/tsconfig.json"
},
{
"path": "./packages/llamaindex/e2e/examples/waku-query-engine/tsconfig.json"
},
{
"path": "./packages/llamaindex/tests/tsconfig.json"
},
{
"path": "./packages/autotool/tsconfig.json"
},
{
"path": "./packages/autotool/examples/01_node/tsconfig.json"
},
{
"path": "./packages/env/tsconfig.json"
},
{
"path": "./packages/workflow/tsconfig.json"
},
{
"path": "./packages/env/tests/tsconfig.json"
},
{
"path": "./examples"
},
{
"path": "./examples/readers"
},
{
"path": "./examples/vector-store/pg/tsconfig.json"
},
{
"path": "./packages/readers/tsconfig.json"
},
{
"path": "./packages/node-parser/tsconfig.json"
},
{
"path": "./packages/experimental/tsconfig.json"
}
]
}