mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 10:48:32 +07:00
- 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.
50 lines
932 B
JSON
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"
|
|
]
|
|
}
|