refactor: divide agent logic and gateway into different package (#90)

* feat: add @memoh/agent

* chore: use @memoh/agent in @memoh-gateway
This commit is contained in:
Acbox Liu
2026-02-22 02:06:47 +08:00
committed by GitHub
parent c591af14b0
commit e6d70b523e
38 changed files with 198 additions and 884 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"jsx": "react-jsx",
"outDir": "./dist",
"rootDir": "./src",
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}