Files
codetyper.cli/tsconfig.json
Carlos Gutierrez 0062e5d9d9 Terminal-based AI coding agent with interactive TUI for autonomous code generation.
Features:
  - Interactive TUI with React/Ink
  - Autonomous agent with tool calls (bash, read, write, edit, glob, grep)
  - Permission system with pattern-based rules
  - Session management with auto-compaction
  - Dual providers: GitHub Copilot and Ollama
  - MCP server integration
  - Todo panel and theme system
  - Streaming responses
  - GitHub-compatible project context
2026-01-27 23:33:06 -05:00

48 lines
1.4 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@commands/*": ["src/commands/*"],
"@constants/*": ["src/constants/*"],
"@interfaces/*": ["src/interfaces/*"],
"@prompts/*": ["src/prompts/*"],
"@services/*": ["src/services/*"],
"@stores/*": ["src/stores/*"],
"@providers/*": ["src/providers/*"],
"@tools/*": ["src/tools/*"],
"@tui/*": ["src/tui/*"],
"@tui-solid/*": ["src/tui-solid/*"],
"@ui/*": ["src/ui/*"],
"@utils/*": ["src/utils/*"],
"@types/*": ["src/types/*"]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"jsxImportSource": "@opentui/solid"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "src/tui/App.tsx", "src/tui/components", "src/tui/hooks", "src/tui/store.ts"]
}