- 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>
9 lines
201 B
JSON
9 lines
201 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
|
|
}
|