Assist_Design/apps/portal/tsconfig.json
T. Narantuya 0bf872e249 Refactor code formatting and improve documentation clarity
- Adjusted YAML and JSON files for consistent formatting, including healthcheck commands and package exports.
- Enhanced readability in various TypeScript files by standardizing string quotes and improving line breaks.
- Updated documentation across multiple files to improve clarity and consistency, including address system and logging levels.
- Removed unnecessary package-lock.json from shared package directory to streamline dependencies.
2025-09-09 18:19:54 +09:00

27 lines
696 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"]
}