Assist_Design/apps/portal/tsconfig.json
T. Narantuya 4d0baed4b2 Update Plesk environment configuration and enhance Docker setup
- Added detailed instructions for Plesk deployment in `.env.plesk` and `compose-plesk.yaml`.
- Updated `.gitignore` to exclude Docker-related files.
- Enhanced Dockerfiles for both frontend and backend to optimize for Plesk deployment.
- Refined TypeScript configurations across various files for improved module resolution and compatibility.
- Removed obsolete logger fixes summary file to streamline documentation.
2025-09-01 15:11:42 +09:00

34 lines
724 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Next.js requirements
"jsx": "preserve",
"noEmit": true,
"plugins": [
{
"name": "next"
}
],
// Module resolution tailored for monorepo
"moduleResolution": "node",
"baseUrl": ".",
// Path mappings
"paths": {
"@/*": ["./src/*"],
"@customer-portal/shared": ["../../packages/shared/src", "../../packages/shared/dist"]
},
// Enforce TS-only in portal and keep strict mode explicit (inherits from root)
"allowJs": false,
"strict": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}