LibreChat/packages/client/tsconfig.json

35 lines
772 B
JSON
Raw Normal View History

2025-07-05 22:49:28 +02:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
2025-07-05 22:49:28 +02:00
"jsx": "react-jsx",
"jsxImportSource": "react",
"declaration": true,
"declarationMap": true,
"declarationDir": "./dist/types",
2025-07-05 22:49:28 +02:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"~/*": ["./*"]
},
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"resolveJsonModule": true
2025-07-05 22:49:28 +02:00
},
2025-07-12 22:19:05 +02:00
"include": ["src/**/*"],
"exclude": [
"dist",
"node_modules",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
2025-07-05 22:49:28 +02:00
}