change(tooling): typecheck in CI, update ts to 6

fix(ui-tui): fix ts 6 real type errors

change(tooling): use new node everywhere
This commit is contained in:
ethernet 2026-06-04 18:25:27 -04:00
parent a72bb03757
commit 3bfbb3f2a0
21 changed files with 136 additions and 76 deletions

View file

@ -7,7 +7,8 @@
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
"preview": "vite preview",
"typecheck": "tsc -p . --noEmit"
},
"dependencies": {
"@nous-research/ui": "0.18.2",
@ -45,7 +46,7 @@
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"three": "^0.180.0",
"typescript": "~5.9.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1"
}

View file

@ -17,7 +17,6 @@
"jsx": "react-jsx",
/* Path aliases */
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},