- Removed deprecated files and components from the BFF application, including various auth and catalog services, enhancing code clarity. - Updated package.json scripts for better organization and streamlined development processes. - Refactored portal components to improve structure and maintainability, including the removal of unused files and components. - Enhanced type definitions and imports across the application for consistency and clarity.
26 lines
603 B
JSON
26 lines
603 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/*"],
|
|
},
|
|
// 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"]
|
|
}
|