mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 10:48:32 +07:00
* 📅 feat: Add 2025 roadmap blog post with upcoming features and partnerships * 🔨 refactor: Migrate Subscriber model to TypeScript and update API handler for type safety * chore: remove comment * fix: build issues with numeric blog tag * chore: update discussion links in 2025 roadmap blog post
34 lines
763 B
JSON
34 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mdx",
|
|
"utils/Subscriber.ts",
|
|
"utils/dbConnect.js",
|
|
"pages/api/subscribe.js",
|
|
"components/NewsletterForm.js",
|
|
"components/tools/yamlChecker.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
} |