- Enhanced ESLint configuration to better support TypeScript file patterns and added centralized dependency versions using pnpm catalogs. - Updated TypeScript configurations across applications to utilize new file structure and improved type inference with Zod. - Refactored domain modules to replace deprecated type inference methods, ensuring better type safety and consistency. - Cleaned up package.json files to standardize dependency versions and improve overall project maintainability.
15 lines
365 B
JSON
15 lines
365 B
JSON
{
|
|
"extends": "../../tsconfig.next.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"composite": true,
|
|
"tsBuildInfoFile": ".typecheck/tsconfig.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|