lix/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

15 lines
341 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}
}