fix: add type checks for TypeScript workspaces (#1447)

This commit is contained in:
Abhinav Kumar Singh 2026-08-13 17:55:50 +05:30 committed by GitHub
parent 1356affbd1
commit 9d64e0f950
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 17 additions and 2 deletions

View file

@ -9,6 +9,7 @@
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"check-types": "bun run compile",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",

View file

@ -7,6 +7,7 @@
"dev": "portless",
"dev:app": "next dev --port ${PORT:-3004}",
"build": "next build",
"check-types": "tsc --noEmit",
"start": "next start"
},
"dependencies": {

View file

@ -10,6 +10,7 @@
"dev": "portless",
"dev:app": "next dev --port ${PORT:-3000}",
"build": "next build",
"check-types": "tsc --noEmit",
"start": "next start",
"lint": "biome check --write",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",

View file

@ -1,5 +1,8 @@
{
"name": "@repo/hooks",
"version": "0.0.0",
"private": true
"private": true,
"scripts": {
"check-types": "tsc --noEmit"
}
}

View file

@ -3,6 +3,9 @@
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"check-types": "tsc --noEmit"
},
"exports": {
"./*": "./*"
},

View file

@ -3,6 +3,9 @@
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"check-types": "tsc --noEmit"
},
"exports": {
"./*": "./*"
},

View file

@ -2,5 +2,8 @@
"name": "@repo/validation",
"version": "0.0.0",
"private": true,
"type": "module"
"type": "module",
"scripts": {
"check-types": "tsc --noEmit"
}
}