forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
70 lines (70 loc) · 1.64 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
{
"extends": "@tsconfig/recommended",
"compilerOptions": {
"outDir": "../dist",
"rootDir": "./src",
"target": "ES2021",
"lib": [
"ES2021",
"ES2022.Object",
"DOM"
],
"module": "ES2020",
"moduleResolution": "nodenext",
"sourceMap": true,
"esModuleInterop": true,
"baseUrl": "./src",
"declaration": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useDefineForClassFields": true,
"strictPropertyInitialization": false,
"allowJs": true,
"strict": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"docs"
],
"typedocOptions": {
"plugin": [
"typedoc-plugin-missing-exports"
],
"entryPoints": [
"src/agents/index.ts",
"src/base_language/index.ts",
"src/agents/tools/index.ts",
"src/chains/index.ts",
"src/embeddings/index.ts",
"src/llms/index.ts",
"src/prompts/index.ts",
"src/vectorstores/index.ts",
"src/text_splitter.ts",
"src/memory/index.ts",
"src/document.ts",
"src/docstore/index.ts",
"src/document_loaders/index.ts",
"src/chat_models/index.ts",
"src/schema/index.ts",
"src/sql_db.ts",
"src/callbacks/index.ts",
"src/output_parsers/index.ts",
"src/retrievers/index.ts",
"src/cache.ts",
"src/index.ts"
],
"excludePrivate": true,
"excludeInternal": true,
"excludeExternals": true,
"internalModule": "internal",
"readme": "none",
"out": "docs"
}
}