- 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.
21 lines
551 B
JSON
21 lines
551 B
JSON
{
|
|
"extends": "../../tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"composite": true,
|
|
"tsBuildInfoFile": ".typecheck/tsconfig.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@bff/*": ["src/*"]
|
|
},
|
|
"noEmit": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "prisma", "test", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|