mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
- Extract shared type definitions from server and UI - Add provider types (ProviderConfig, ExecuteOptions, etc.) - Add feature types (Feature, FeatureStatus, PlanningMode) - Add session types (AgentSession, CreateSessionParams) - Add error types (ErrorType, ErrorInfo) - Add image types (ImageData, ImageContentBlock) - Add model constants (CLAUDE_MODEL_MAP, DEFAULT_MODELS) This package provides centralized type definitions for both server and UI. No dependencies - pure TypeScript interfaces. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21 lines
477 B
JSON
21 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"types": ["node"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|