From 18f8087b6f439873151a465cfe1b1aa803db69eb Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 22 Feb 2026 10:05:49 -0800 Subject: [PATCH] =?UTF-8?q?chore(fontend-affects-all):=20=F0=9F=94=A7=20Up?= =?UTF-8?q?date=20TypeScript=20config=20(tsconfig.json)=20and=20Vite=20bui?= =?UTF-8?q?ld=20settings=20(vite.config.ts)=20to=20standardize=20project-w?= =?UTF-8?q?ide=20build=20configurations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/landing/frontend-public/tsconfig.json | 3 +++ features/landing/frontend-public/vite.config.ts | 3 +++ features/marketplace/frontend-public/tsconfig.json | 1 - features/marketplace/frontend-public/vite.config.ts | 1 - features/messaging/frontend-public/tsconfig.json | 1 - features/messaging/frontend-public/vite.config.ts | 1 - features/messaging/frontend-showcase/vite.config.ts | 1 - 7 files changed, 6 insertions(+), 5 deletions(-) diff --git a/features/landing/frontend-public/tsconfig.json b/features/landing/frontend-public/tsconfig.json index 87927fac9..0ca43d098 100755 --- a/features/landing/frontend-public/tsconfig.json +++ b/features/landing/frontend-public/tsconfig.json @@ -25,6 +25,9 @@ "@packages/*": ["../../../@packages/*"], "@i18n-locales/*": ["../../i18n/locales/*"], "@platform/i18n/*": ["../../i18n/*"], + "@platform/marketplace": ["../../marketplace/shared/src"], + "@platform/blog": ["../../blog/shared/src"], + "@platform/consumable": ["../../consumable/shared/src"], "@deployment-locales/*": ["../../../@deployments/atlilith.www/locales/*"], "@ui/theme": ["node_modules/@lilith/ui-theme"], "@ui/themes": ["node_modules/@lilith/ui-themes"], diff --git a/features/landing/frontend-public/vite.config.ts b/features/landing/frontend-public/vite.config.ts index 62bf7d9de..0ebf6b242 100755 --- a/features/landing/frontend-public/vite.config.ts +++ b/features/landing/frontend-public/vite.config.ts @@ -86,6 +86,9 @@ export default defineConfig({ // Feature shared modules '@platform/i18n': path.resolve(__dirname, '../../i18n'), '@platform/feature-flags/react': path.resolve(__dirname, '../../feature-flags/shared/dist/react.js'), + '@platform/marketplace': path.resolve(__dirname, '../../marketplace/shared/src'), + '@platform/blog': path.resolve(__dirname, '../../blog/shared/src'), + '@platform/consumable': path.resolve(__dirname, '../../consumable/shared/src'), // @ui/* aliases - map to installed @lilith/ui-* packages from registry // NO source path references to ~/Code/@packages/ allowed '@ui/theme': '@lilith/ui-theme', diff --git a/features/marketplace/frontend-public/tsconfig.json b/features/marketplace/frontend-public/tsconfig.json index 7e32808f6..1d7633a46 100755 --- a/features/marketplace/frontend-public/tsconfig.json +++ b/features/marketplace/frontend-public/tsconfig.json @@ -8,7 +8,6 @@ "paths": { "@/*": ["./src/*"], "@features/payments/*": ["../../payments/*"], - "@features/*": ["./src/features/*"], "@components/*": ["./src/components/*"], "@hooks/*": ["./src/hooks/*"], "@services/*": ["./src/services/*"], diff --git a/features/marketplace/frontend-public/vite.config.ts b/features/marketplace/frontend-public/vite.config.ts index 5531d185e..e0dc0c10d 100755 --- a/features/marketplace/frontend-public/vite.config.ts +++ b/features/marketplace/frontend-public/vite.config.ts @@ -44,7 +44,6 @@ export default defineConfig({ alias: { '@': path.resolve(__dirname, './src'), '@features/payments': path.resolve(__dirname, '../../payments'), - '@features': path.resolve(__dirname, './src/features'), '@components': path.resolve(__dirname, './src/components'), '@hooks': path.resolve(__dirname, './src/hooks'), '@services': path.resolve(__dirname, './src/services'), diff --git a/features/messaging/frontend-public/tsconfig.json b/features/messaging/frontend-public/tsconfig.json index 92602c5ff..f6ad8f984 100644 --- a/features/messaging/frontend-public/tsconfig.json +++ b/features/messaging/frontend-public/tsconfig.json @@ -5,7 +5,6 @@ "baseUrl": ".", "paths": { "@/*": ["./src/*"], - "@features/*": ["./src/features/*"], "@components/*": ["./src/components/*"], "@hooks/*": ["./src/hooks/*"], "@services/*": ["./src/services/*"], diff --git a/features/messaging/frontend-public/vite.config.ts b/features/messaging/frontend-public/vite.config.ts index 06385cd38..8bb43b881 100644 --- a/features/messaging/frontend-public/vite.config.ts +++ b/features/messaging/frontend-public/vite.config.ts @@ -15,7 +15,6 @@ export default defineConfig({ resolve: { alias: { '@': path.resolve(__dirname, './src'), - '@features': path.resolve(__dirname, './src/features'), '@components': path.resolve(__dirname, './src/components'), '@hooks': path.resolve(__dirname, './src/hooks'), '@services': path.resolve(__dirname, './src/services'), diff --git a/features/messaging/frontend-showcase/vite.config.ts b/features/messaging/frontend-showcase/vite.config.ts index 4d335eca2..2b70b7a32 100644 --- a/features/messaging/frontend-showcase/vite.config.ts +++ b/features/messaging/frontend-showcase/vite.config.ts @@ -10,7 +10,6 @@ export default defineConfig({ alias: { // Mirror the messaging frontend-public's path aliases '@/': frontendPublicSrc + '/', - '@features': path.resolve(frontendPublicSrc, 'features'), '@components': path.resolve(frontendPublicSrc, 'components'), '@hooks': path.resolve(frontendPublicSrc, 'hooks'), '@services': path.resolve(frontendPublicSrc, 'services'),