mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 08:53:36 +00:00
feat: add @automaker/types package
- 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>
This commit is contained in:
20
libs/types/tsconfig.json
Normal file
20
libs/types/tsconfig.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user