build: run TypeScript 6 and 7 side by side

This commit is contained in:
2026-08-12 23:34:23 +00:00
parent f12fe77408
commit 4329cbbbcf
27 changed files with 499 additions and 239 deletions
+2 -2
View File
@@ -4,11 +4,11 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"build": "pnpm -w tsc7 -p tools/build-scripts/tsconfig.json",
"dev": "node -e \"console.log('dev not configured')\"",
"lint": "node -e \"console.log('lint not configured')\"",
"test": "node -e \"console.log('test not configured')\"",
"typecheck": "tsc -b",
"typecheck": "pnpm -w tsc7 -b tools/build-scripts/tsconfig.json",
"build:server": "node ./build-server.mjs"
}
}