Add LangchainJS Examples (#146)

This commit is contained in:
Dave 2023-05-01 17:18:14 -04:00 committed by GitHub
parent 92452d46da
commit 88f472e5d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 2536 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es2022",
"lib": ["ES2022", "DOM"],
"module": "ES2022",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"outDir": "./dist"
},
"include": ["src", "test"],
"exclude": ["node_modules", "dist"]
}