LibreChat/packages/client/tsconfig.json
2025-07-26 01:13:49 +02:00

24 lines
637 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"],
"exclude": ["dist", "node_modules"]
}