packages-cli/tsconfig.json
Lilith fa6f788a74 feat(cli): initial commit of packages-cli
New workspace-specific CLI for @packages operations:
- consumers find/update commands
- publish pending/package commands
- ci-status command

Ported from bash scripts to TypeScript for better maintainability.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 05:08:14 -08:00

23 lines
554 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022",
"lib": ["ES2022"],
"types": ["node"],
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}