- 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.
31 lines
618 B
JSON
31 lines
618 B
JSON
{
|
|
"extends": "../../tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo"
|
|
},
|
|
"include": [
|
|
"auth/**/*",
|
|
"billing/**/*",
|
|
"catalog/**/*",
|
|
"common/**/*",
|
|
"customer/**/*",
|
|
"dashboard/**/*",
|
|
"mappings/**/*",
|
|
"orders/**/*",
|
|
"payments/**/*",
|
|
"providers/**/*",
|
|
"sim/**/*",
|
|
"subscriptions/**/*",
|
|
"support/**/*",
|
|
"toolkit/**/*",
|
|
"index.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|