queue/admin/frontend/tsconfig.json
Lilith 4ca9d324fc 🔧 Add unified TypeScript and Vitest configuration
- Create tsconfig.base.json with path aliases for @lilith/queue/* imports
- Add vitest.config.ts with workspace projects for proper test environments
- Update all subpackage tsconfigs to extend the base config

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 20:27:44 -08:00

11 lines
348 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/**/*.spec.ts", "src/**/*.spec.tsx", "src/**/*.test.ts", "src/**/*.test.tsx", "src/test/**"]
}