chore(profile-assistant): 🔧 Update TypeScript, Vite, and Vitest configs in tsconfig.json/vitest.config.ts/vite.config.ts

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-24 09:21:13 -08:00
parent 7e785cd5e0
commit d27e1d418e
4 changed files with 1 additions and 39 deletions

View file

@ -1,13 +0,0 @@
{
"extends": "@lilith/configs/typescript/nestjs",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"strictPropertyInitialization": false,
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}

View file

@ -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'),
},
},
})

View file

@ -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"]
}

View file

@ -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