39 lines
969 B
JSON
39 lines
969 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"pretty": true,
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"typeRoots": [
|
|
"typings",
|
|
"./node_modules/@types",
|
|
],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@langchain/community/*": ["node_modules/@langchain/community/dist/*"],
|
|
"@langchain/core/*": ["node_modules/@langchain/core/dist/*"],
|
|
"@langchain/langgraph/*": ["node_modules/@langchain/langgraph/dist/*"],
|
|
"langchain/*": ["node_modules/langchain/dist/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"node_modules",
|
|
"test",
|
|
],
|
|
}
|