From 21229398ad94a6587b68b934107ebf02ec8429aa Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 18 Dec 2025 15:01:13 +0100 Subject: [PATCH] Update tsgo, switch to tsc for agent package, as tsgo hangs on Alpine in Docker x86 --- package.json | 2 +- packages/agent/package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 483f399f..4feaaecf 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@biomejs/biome": "2.3.5", "@types/node": "^22.10.5", - "@typescript/native-preview": "^7.0.0-dev.20251208.1", + "@typescript/native-preview": "^7.0.0-dev.20251218.1", "concurrently": "^9.2.1", "husky": "^9.1.7", "tsx": "^4.20.3", diff --git a/packages/agent/package.json b/packages/agent/package.json index 51c5a70d..c8aa4192 100644 --- a/packages/agent/package.json +++ b/packages/agent/package.json @@ -11,9 +11,9 @@ ], "scripts": { "clean": "rm -rf dist", - "build": "tsgo -p tsconfig.build.json", - "dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput", - "check": "tsgo --noEmit", + "build": "tsc -p tsconfig.build.json", + "dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput", + "check": "tsc --noEmit", "test": "vitest --run", "prepublishOnly": "npm run clean && npm run build" },