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