diff --git a/features/blog/backend-api/tsconfig.json b/features/blog/backend-api/tsconfig.json index 277601592..7753c9bff 100644 --- a/features/blog/backend-api/tsconfig.json +++ b/features/blog/backend-api/tsconfig.json @@ -5,7 +5,7 @@ "baseUrl": "./", "paths": { "@/*": ["src/*"], - "@platform/blog": ["../shared/src"] + "@features/blog": ["../shared/src"] } }, "include": ["src/**/*"], diff --git a/features/blog/frontend-admin/tsconfig.json b/features/blog/frontend-admin/tsconfig.json index 66ead8f30..a7fd3c93e 100644 --- a/features/blog/frontend-admin/tsconfig.json +++ b/features/blog/frontend-admin/tsconfig.json @@ -7,7 +7,7 @@ "declarationMap": false, "paths": { "@/*": ["./src/*"], - "@platform/blog": ["../shared/src"] + "@features/blog": ["../shared/src"] } }, "include": ["src"], diff --git a/features/feature-flags/frontend-admin/tsconfig.json b/features/feature-flags/frontend-admin/tsconfig.json index 933ea3655..a0f04faf1 100755 --- a/features/feature-flags/frontend-admin/tsconfig.json +++ b/features/feature-flags/frontend-admin/tsconfig.json @@ -25,7 +25,7 @@ "feature-flags/frontend-admin/src/*", "feature-flags/shared/src/*" ], - "@platform/feature-flags": [ + "@features/feature-flags": [ "feature-flags/shared/src" ] } diff --git a/features/landing/frontend-public/tsconfig.json b/features/landing/frontend-public/tsconfig.json index 0ca43d098..bde28b1bd 100755 --- a/features/landing/frontend-public/tsconfig.json +++ b/features/landing/frontend-public/tsconfig.json @@ -24,10 +24,10 @@ "@features/*": ["../../*"], "@packages/*": ["../../../@packages/*"], "@i18n-locales/*": ["../../i18n/locales/*"], - "@platform/i18n/*": ["../../i18n/*"], - "@platform/marketplace": ["../../marketplace/shared/src"], - "@platform/blog": ["../../blog/shared/src"], - "@platform/consumable": ["../../consumable/shared/src"], + "@features/i18n/*": ["../../i18n/*"], + "@features/marketplace": ["../../marketplace/shared/src"], + "@features/blog": ["../../blog/shared/src"], + "@features/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/marketplace/backend-api/tsconfig.json b/features/marketplace/backend-api/tsconfig.json index 9d5a2db39..9a5a4015f 100755 --- a/features/marketplace/backend-api/tsconfig.json +++ b/features/marketplace/backend-api/tsconfig.json @@ -5,7 +5,7 @@ "baseUrl": "./", "paths": { "@/*": ["src/*"], - "@platform/*": ["src/@platform/*"] + "@features/*": ["src/@platform/*"] } }, "include": ["src/**/*"], diff --git a/features/marketplace/backend-api/vitest.config.ts b/features/marketplace/backend-api/vitest.config.ts index c180f17ed..dba0c67d4 100644 --- a/features/marketplace/backend-api/vitest.config.ts +++ b/features/marketplace/backend-api/vitest.config.ts @@ -11,7 +11,7 @@ export default nestPreset({ resolve: { alias: { '@': resolve(__dirname, './src'), - '@platform': resolve(__dirname, './src/@platform'), + '@features': resolve(__dirname, './src/@platform'), '@lilith/marketplace-shared': resolve(__dirname, '../shared/src/index.ts'), '@lilith/types': resolve(__dirname, '../../@packages/@types/src/index.ts'), '@nestjs/event-emitter': resolve(__dirname, './__mocks__/@nestjs/event-emitter.ts'), diff --git a/features/marketplace/frontend-standalone/tsconfig.json b/features/marketplace/frontend-standalone/tsconfig.json index ef6dd42de..7d553b6f3 100644 --- a/features/marketplace/frontend-standalone/tsconfig.json +++ b/features/marketplace/frontend-standalone/tsconfig.json @@ -13,7 +13,7 @@ "jsx": "react-jsx", "paths": { "@/*": ["../frontend-public/src/*"], - "@platform/*": ["../frontend-public/src/*"] + "@features/*": ["../frontend-public/src/*"] } }, "include": ["src/**/*"], diff --git a/features/platform-admin/frontend-admin/tsconfig.json b/features/platform-admin/frontend-admin/tsconfig.json index eb9fe6166..ad69d3d22 100755 --- a/features/platform-admin/frontend-admin/tsconfig.json +++ b/features/platform-admin/frontend-admin/tsconfig.json @@ -18,9 +18,9 @@ "baseUrl": ".", "paths": { "@/*": ["src/*"], - "@platform/analytics/*": ["../../analytics/shared/src/*"], - "@platform/blog": ["../../blog/shared/src"], - "@platform/blog/*": ["../../blog/shared/src/*"] + "@features/analytics/*": ["../../analytics/shared/src/*"], + "@features/blog": ["../../blog/shared/src"], + "@features/blog/*": ["../../blog/shared/src/*"] } }, "include": ["src"], diff --git a/features/platform-analytics/frontend-platform/tsconfig.json b/features/platform-analytics/frontend-platform/tsconfig.json index cb21c643e..c520af4ee 100644 --- a/features/platform-analytics/frontend-platform/tsconfig.json +++ b/features/platform-analytics/frontend-platform/tsconfig.json @@ -5,7 +5,7 @@ "paths": { "@/*": ["./src/*"], "@packages/*": ["../../../@packages/*"], - "@platform/i18n": ["../../i18n"], + "@features/i18n": ["../../i18n"], "@ui/theme": ["@lilith/ui-theme"], "@ui/themes": ["@lilith/ui-themes"], "@ui/accessibility": ["@lilith/ui-accessibility"], diff --git a/features/platform-analytics/frontend-provider/tsconfig.json b/features/platform-analytics/frontend-provider/tsconfig.json index ee79fe6a3..f0467e2e2 100644 --- a/features/platform-analytics/frontend-provider/tsconfig.json +++ b/features/platform-analytics/frontend-provider/tsconfig.json @@ -5,7 +5,7 @@ "paths": { "@/*": ["./src/*"], "@packages/*": ["../../../@packages/*"], - "@platform/i18n": ["../../i18n"], + "@features/i18n": ["../../i18n"], "@ui/theme": ["@lilith/ui-theme"], "@ui/themes": ["@lilith/ui-themes"], "@ui/accessibility": ["@lilith/ui-accessibility"], diff --git a/features/share/frontend-public/tsconfig.json b/features/share/frontend-public/tsconfig.json index 8ae275675..01e253034 100644 --- a/features/share/frontend-public/tsconfig.json +++ b/features/share/frontend-public/tsconfig.json @@ -6,7 +6,7 @@ "declarationMap": false, "paths": { "@/*": ["./src/*"], - "@platform/share": ["../shared/src"] + "@features/share": ["../shared/src"] } }, "include": ["src"] diff --git a/features/threat-intelligence/backend-api/tsconfig.json b/features/threat-intelligence/backend-api/tsconfig.json index 9d5a2db39..9a5a4015f 100644 --- a/features/threat-intelligence/backend-api/tsconfig.json +++ b/features/threat-intelligence/backend-api/tsconfig.json @@ -5,7 +5,7 @@ "baseUrl": "./", "paths": { "@/*": ["src/*"], - "@platform/*": ["src/@platform/*"] + "@features/*": ["src/@platform/*"] } }, "include": ["src/**/*"],