lix/core/tsconfig.json
Lilith 965c4a212a feat: initial @lix build tooling monorepo
Unified build CLI for Lilith ecosystem with three packages:
- @lilith/lix-core: Types and package detection (library/nestjs/frontend)
- @lilith/lix-cli: CLI utilities (ora spinner, chalk output helpers)
- @lilith/lix-build: Main CLI tool exporting `lixb` command

Commands: lixb detect, lixb verify, lixb [type]
Builders: library (tsup), nestjs (nest build), frontend (vite)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 12:03:36 -08:00

9 lines
177 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}