Switch to more stable, oldder tsgo, switch all check scripts to tsgo

This commit is contained in:
Mario Zechner 2025-12-18 15:20:41 +01:00
parent 9c1a218f66
commit b02516a5cd
8 changed files with 40 additions and 42 deletions

View file

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