feat(ccw): migrate backend to TypeScript

- Convert 40 JS files to TypeScript (CLI, tools, core, MCP server)
- Add Zod for runtime parameter validation
- Add type definitions in src/types/
- Keep src/templates/ as JavaScript (dashboard frontend)
- Update bin entries to use dist/
- Add tsconfig.json with strict mode
- Add backward-compatible exports for tests
- All 39 tests passing

Breaking changes: None (backward compatible)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-12-13 10:43:15 +08:00
parent d4e59770d0
commit 25ac862f46
93 changed files with 5531 additions and 9302 deletions

View File

@@ -4,4 +4,4 @@
* Entry point for running CCW tools as an MCP server
*/
import '../src/mcp-server/index.js';
import '../dist/mcp-server/index.js';

View File

@@ -5,6 +5,6 @@
* Entry point for global CLI installation
*/
import { run } from '../src/cli.js';
import { run } from '../dist/cli.js';
run(process.argv);