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

@ -25,7 +25,7 @@
"devDependencies": { "devDependencies": {
"@biomejs/biome": "2.3.5", "@biomejs/biome": "2.3.5",
"@types/node": "^22.10.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", "concurrently": "^9.2.1",
"husky": "^9.1.7", "husky": "^9.1.7",
"tsx": "^4.20.3", "tsx": "^4.20.3",

View file

@ -11,9 +11,9 @@
], ],
"scripts": { "scripts": {
"clean": "rm -rf dist", "clean": "rm -rf dist",
"build": "tsgo -p tsconfig.build.json", "build": "tsc -p tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput", "dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
"check": "tsgo --noEmit", "check": "tsc --noEmit",
"test": "vitest --run", "test": "vitest --run",
"prepublishOnly": "npm run clean && npm run build" "prepublishOnly": "npm run clean && npm run build"
}, },