Initial project setup with multi-component architecture
- Initialize TypeScript project with pnpm - Create agent, gateway, client, and shared modules - Configure ESM with strict TypeScript settings Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
commit
6b34ddc3dc
13 changed files with 415 additions and 0 deletions
1
src/shared/index.ts
Normal file
1
src/shared/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./types.js";
|
||||
5
src/shared/types.ts
Normal file
5
src/shared/types.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
export interface Message {
|
||||
id: string;
|
||||
payload: unknown;
|
||||
timestamp: number;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue