mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-08-24 20:31:43 -04:00
bc002b9237
* Use TypeScript 5 * Update other related deps
31 lines
607 B
JSON
31 lines
607 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM"
|
|
],
|
|
"target": "ES2021",
|
|
"module": "nodenext",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"exclude": [
|
|
"node_modules/",
|
|
"dist/",
|
|
"tests/"
|
|
],
|
|
"include": [
|
|
"./src"
|
|
]
|
|
}
|