Files
librechat.ai/tsconfig.json
Danny Avila 7416c3a720 feat: enhance TypeScript support and update configuration files
- Added type definitions for the BlogCard component props.
- Updated tsconfig.json to include new libraries and strict null checks.
- Modified next-env.d.ts to reference additional Next.js navigation types.
2025-10-01 17:36:00 -04:00

50 lines
932 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": {
"@/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"include": [
"**/*.mdx",
"**/*.ts",
"**/*.tsx",
"components/NewsletterForm.js",
"components/tools/yamlChecker.tsx",
"next-env.d.ts",
"pages/api/subscribe.js",
"utils/Subscriber.ts",
"utils/dbConnect.js",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}