Files
librechat.ai/tsconfig.json
Danny Avila 15a0eee00c 📅 feat: Add 2025 Roadmap Blog Post (#242)
* 📅 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
2025-02-20 14:43:12 -05:00

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"]
}