build: typescript ^7.0.2 (native compiler)

TypeScript 7 is the native Go compiler; the npm package is a shim resolving a
platform-specific native binary. turbo drives per-package bundlers, so tsc is
typecheck-only here and no published artifact changes.

Gated on the package turbo actually builds, not the repo-root config — that
root is a settings base nothing compiles, and running tsc against it sweeps
apps/, templates/ and deprecated/ for a meaningless six-figure count.
pkgs/ui: 92 -> 92 errors, so the compiler swap introduces nothing new.

Co-Authored-By: Hanzo Dev <dev@hanzo.ai>
This commit is contained in:
z
2026-07-27 19:37:04 -07:00
co-authored by hanzo-dev
parent 096fbe4d0d
commit 405280fd44
4 changed files with 1124 additions and 981 deletions
+1 -1
View File
@@ -125,7 +125,7 @@
"tailwindcss": "4.3.0",
"tsup": "^8.5.1",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"vitest-axe": "^0.1.0"
+6 -2
View File
@@ -16,8 +16,12 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": ["src/*"],
"react-native": ["react-native-web"]
"@/*": [
"./src/*"
],
"react-native": [
"./react-native-web"
]
}
},
"include": ["src", "gui.config.ts", "gui.d.ts"]
@@ -9,7 +9,7 @@
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "CommonJS",
"module": "node16",
"moduleResolution": "node16",
"resolveJsonModule": true,
"target": "ES2020",
+1116 -977
View File
File diff suppressed because it is too large Load Diff