From d27e1d418ef0e6163f0e84c7a6bcff67a54800fc Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 24 Feb 2026 09:21:13 -0800 Subject: [PATCH] =?UTF-8?q?chore(profile-assistant):=20=F0=9F=94=A7=20Upda?= =?UTF-8?q?te=20TypeScript,=20Vite,=20and=20Vitest=20configs=20in=20tsconf?= =?UTF-8?q?ig.json/vitest.config.ts/vite.config.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../profile-assistant/backend-api/tsconfig.json | 13 ------------- .../backend-api/vitest.config.ts | 10 ---------- .../plugin-profile-assistant/tsconfig.json | 15 --------------- features/profile/frontend-showcase/vite.config.ts | 2 +- 4 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 features/profile-assistant/backend-api/tsconfig.json delete mode 100644 features/profile-assistant/backend-api/vitest.config.ts delete mode 100644 features/profile-assistant/plugin-profile-assistant/tsconfig.json 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