refactor: Move cli package to apps/cli

This commit is contained in:
2026-07-09 13:17:29 +05:30
parent 6e096415ee
commit 0c59756c08
11 changed files with 35 additions and 33 deletions

18
apps/cli/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist"
},
"include": ["src"],
"references": [
{ "path": "../../packages/core" },
{ "path": "../../packages/spatial" },
{ "path": "../../packages/memory" },
{ "path": "../../packages/intent" },
{ "path": "../../packages/architect" },
{ "path": "../../packages/actor" },
{ "path": "../../packages/llm" },
{ "path": "../../packages/scenario" }
]
}