Update tsgo, switch to tsc for agent package, as tsgo hangs on Alpine in Docker x86

This commit is contained in:
Mario Zechner 2025-12-18 15:01:13 +01:00
parent de2de851c8
commit 21229398ad
2 changed files with 4 additions and 4 deletions

View file

@ -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"
},