diff --git a/features/profile-assistant/backend-api/tsconfig.json b/features/profile-assistant/backend-api/tsconfig.json deleted file mode 100644 index d29d62870..000000000 --- a/features/profile-assistant/backend-api/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extends": "@lilith/configs/typescript/nestjs", - "compilerOptions": { - "outDir": "./dist", - "baseUrl": "./", - "strictPropertyInitialization": false, - "paths": { - "@/*": ["src/*"] - } - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} diff --git a/features/profile-assistant/backend-api/vitest.config.ts b/features/profile-assistant/backend-api/vitest.config.ts deleted file mode 100644 index f219581c7..000000000 --- a/features/profile-assistant/backend-api/vitest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { nestPreset } from '@lilith/test-utils/vitest-presets' -import path from 'path' - -export default nestPreset({ - resolve: { - alias: { - '@': path.resolve(import.meta.dirname, './src'), - }, - }, -}) diff --git a/features/profile-assistant/plugin-profile-assistant/tsconfig.json b/features/profile-assistant/plugin-profile-assistant/tsconfig.json deleted file mode 100644 index 86c69c018..000000000 --- a/features/profile-assistant/plugin-profile-assistant/tsconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "extends": "@lilith/configs/typescript/react", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "lib": ["ES2023", "DOM", "DOM.Iterable"], - "skipLibCheck": true, - "baseUrl": "./", - "paths": { - "@/*": ["src/*"] - } - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"] -} diff --git a/features/profile/frontend-showcase/vite.config.ts b/features/profile/frontend-showcase/vite.config.ts index f9d012fde..d625cedfd 100644 --- a/features/profile/frontend-showcase/vite.config.ts +++ b/features/profile/frontend-showcase/vite.config.ts @@ -61,7 +61,7 @@ export default defineConfig(({ mode }) => { // codebase/features/ root — allows Vite to serve any feature's shared source dirs. // browser.ts imports relative paths into profile/shared, attributes/shared, - // and profile-assistant/shared which all live outside the showcase root. + // and platform-assistant/shared which all live outside the showcase root. const featuresRoot = path.resolve(__dirname, '../../../..'); // File system allowlist for HMR