mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-05-13 16:07:30 +00:00
* chore: Update axios dependency to version 1.16.0 across multiple package files * chore: Update express-rate-limit and ip-address dependencies to versions 8.5.1 and 10.2.0 in package-lock.json and package.json * chore: Update mongoose and hono dependencies to versions 8.23.1 and 4.12.18 across multiple package files * fix: Add type parameters to mongoose lean queries in accessRole and aclEntry methods * fix: Add type parameters to mongoose lean queries in action, agent, and agentCategory methods * chore: Update moduleResolution to 'bundler' in tsconfig.json for api and data-schemas packages * fix: Update mongoose lean queries to include type parameters across various methods for improved type safety
28 lines
812 B
JSON
28 lines
812 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"module": "esnext",
|
|
"noImplicitAny": true,
|
|
"outDir": "./types",
|
|
"target": "es5",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["es2017", "dom", "ES2021.String"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"librechat-data-provider/react-query": ["./src/react-query/index.ts"],
|
|
"src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "types"],
|
|
"include": ["src/**/*", "types/index.d.ts", "types/react-query/index.d.ts"]
|
|
}
|