terminal-cli-complex/tsconfig.json
Lilith d9bd0e339b Initial commit: @lilith/terminal-cli-complex v1.0.0
Rich terminal UI components using blessed extracted from @terminal monorepo.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 23:27:41 -08:00

20 lines
512 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}