mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-28 22:28:51 +01:00
30 lines
875 B
JSON
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"]
|
|
}
|