chore(hooks): add typecheck script to use-theme and use-keyboard-shortcuts

Aligns with other packages that expose tsc --noEmit for CI.
This commit is contained in:
saravanakumardb1 2026-03-29 12:52:31 -07:00
parent bb86bf220e
commit ea2e68562b
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,8 @@
],
"scripts": {
"build": "tsc",
"test": "vitest run --pool forks"
"test": "vitest run --pool forks",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.0.0"

View File

@ -15,7 +15,8 @@
],
"scripts": {
"build": "tsc",
"test": "vitest run --pool forks"
"test": "vitest run --pool forks",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.0.0"