From 726fcbdbb86d6551574bbd4f8d08b67ca0754fc6 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 23 Jan 2026 14:34:34 -0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20TypeSc?= =?UTF-8?q?ript=20config=20files=20(tsconfig.json=20and=20vite.config.ts)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- @deployments/trustedmeet.www/tsconfig.json | 1 + @deployments/trustedmeet.www/vite.config.ts | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/@deployments/trustedmeet.www/tsconfig.json b/@deployments/trustedmeet.www/tsconfig.json index d1e29fedd..1589cb45f 100644 --- a/@deployments/trustedmeet.www/tsconfig.json +++ b/@deployments/trustedmeet.www/tsconfig.json @@ -5,6 +5,7 @@ "baseUrl": ".", "paths": { "@/*": ["../../features/marketplace/frontend-public/src/*"], + "@features/payments/frontend-checkout/*": ["../../features/payments/frontend-checkout/*"], "@features/payments/*": ["../../features/payments/*"], "@features/*": ["../../features/marketplace/frontend-public/src/features/*"], "@components/*": ["../../features/marketplace/frontend-public/src/components/*"], diff --git a/@deployments/trustedmeet.www/vite.config.ts b/@deployments/trustedmeet.www/vite.config.ts index 5024189bb..5c83cc4b5 100644 --- a/@deployments/trustedmeet.www/vite.config.ts +++ b/@deployments/trustedmeet.www/vite.config.ts @@ -38,7 +38,8 @@ export default defineConfig({ '@store': path.resolve(__dirname, '../../features/marketplace/frontend-public/src/store'), '@utils': path.resolve(__dirname, '../../features/marketplace/frontend-public/src/utils'), - // Cross-feature payments imports + // Cross-feature payments imports - explicit subpath resolution + '@features/payments/frontend-checkout': path.resolve(__dirname, '../../features/payments/frontend-checkout'), '@features/payments': path.resolve(__dirname, '../../features/payments'), // Platform app imports - point to source for HMR @@ -137,7 +138,7 @@ export default defineConfig({ }, }, optimizeDeps: { - include: ['react-i18next', 'i18next'], + include: ['react-i18next', 'i18next', 'styled-components'], exclude: [ '@lilith/ui-dev-tools', '@lilith/marketplace-shared',