- 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
698 B
JSON
26 lines
698 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@bff/core/*": ["src/core/*"],
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
"@bff/modules/*": ["src/modules/*"],
|
|
"@bff/integrations/*": ["src/integrations/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
|
|
"references": [{ "path": "../../packages/domain" }]
|
|
}
|