From de34c2be6e79ffd2ff188f9db46a5f22f86d5e93 Mon Sep 17 00:00:00 2001 From: James Peter Date: Sun, 6 Jul 2025 12:48:07 +1000 Subject: [PATCH] build: add type-check script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index cf17148..2fa07a5 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "format:check": "prettier --check .", "lint": "eslint 'controller/src/**/*.{ts,tsx}' 'engine/src/**/*.{ts,tsx}' 'host/**/*.{ts,tsx}'", "lint:fix": "eslint 'controller/src/**/*.{ts,tsx}' 'engine/src/**/*.{ts,tsx}' 'host/**/*.{ts,tsx}' --fix", + "type-check": "tsc --noEmit -p controller/tsconfig.json && tsc --noEmit -p engine/tsconfig.json && tsc --noEmit -p host/tsconfig.json", "setup": "node host/setup.js", "sync-home": "npm run build:host && node host/dist/setup/sync-home.js", "test": "vitest run",