LibreChat/packages/client/tsconfig.json
2025-07-10 23:47:05 +02:00

30 lines
875 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "react",
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"~/*": ["./*"]
}
},
"include": [
"src/**/*",
"../../client/src/components/Input/ModelSelect/SelectDropDownPop.tsx",
"../../client/src/components/UI-Components/TermsAndConditionsModal.tsx",
"../../client/src/components/Input/ModelSelect/MultiSelectPop.tsx",
"../../client/src/components/Input/ModelSelect/MultiSelectDropDown.tsx"
],
"exclude": ["dist", "node_modules"]
}