2023-07-30 10:37:25 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"declaration": true,
|
2023-12-11 14:48:40 -05:00
|
|
|
"declarationDir": "./dist/types",
|
2023-07-30 10:37:25 -04:00
|
|
|
"module": "esnext",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"outDir": "./types",
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-03-21 22:42:25 -04:00
|
|
|
"lib": ["es2017", "dom", "ES2021.String"],
|
2023-07-30 10:37:25 -04:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
2023-12-11 14:48:40 -05:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"baseUrl": ".", // This should be the root of your package
|
2023-07-30 10:37:25 -04:00
|
|
|
"paths": {
|
2023-12-11 14:48:40 -05:00
|
|
|
// Add path mappings
|
|
|
|
|
"librechat-data-provider/react-query": ["./src/react-query/index.ts"]
|
2023-07-30 10:37:25 -04:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "dist", "types"],
|
2023-12-11 14:48:40 -05:00
|
|
|
"include": ["src/**/*", "types/index.d.ts", "types/react-query/index.d.ts"]
|
2023-07-30 10:37:25 -04:00
|
|
|
}
|