Assist_Design/packages/domain/tsconfig.json
barsa 89b495db1a Update ESLint configuration, package dependencies, and improve Prisma integration
- Refactored ESLint configuration for better clarity and organization, including updates to TypeScript rules and Next.js app settings.
- Upgraded package dependencies, including Next.js to version 16.0.8 and Prisma to version 7.1.0, enhancing performance and compatibility.
- Modified Dockerfile for BFF to reflect updated Prisma version and optimize build settings.
- Improved Prisma service to utilize PostgreSQL connection pooling with the new PrismaPg adapter, ensuring better database management.
- Cleaned up TypeScript configuration files for consistency and updated module settings to align with ESNext standards.
- Adjusted pre-commit script to streamline security audits and removed unnecessary linting during development.
2025-12-10 13:59:41 +09:00

31 lines
636 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": false
},
"include": [
"auth/**/*",
"billing/**/*",
"catalog/**/*",
"common/**/*",
"customer/**/*",
"dashboard/**/*",
"mappings/**/*",
"orders/**/*",
"payments/**/*",
"providers/**/*",
"sim/**/*",
"subscriptions/**/*",
"support/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist"]
}