From 0e8c6c348885438b9d6ab5dc8e837b5dfb9971a5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 15:21:13 +0000 Subject: [PATCH 1/2] Initial plan From d28ec5e07e0ee7d273b7beeb6d219fb432ae366d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 15:25:00 +0000 Subject: [PATCH 2/2] Fix TypeScript build: add missing runtime package references Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- packages/server/tsconfig.json | 3 ++- tsconfig.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/server/tsconfig.json b/packages/server/tsconfig.json index 5343fd59..4c36e668 100644 --- a/packages/server/tsconfig.json +++ b/packages/server/tsconfig.json @@ -21,6 +21,7 @@ }, "exclude": ["node_modules", "test", "dist", "**/*.spec.ts", "**/*.test.ts"], "references": [ - { "path": "../kernel" } + { "path": "../kernel" }, + { "path": "../runtime" } ] } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 41ea609c..53a84f7c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "files": [], "references": [ { "path": "./packages/kernel" }, + { "path": "./packages/runtime" }, { "path": "./packages/server" } ] }