diff --git a/package.json b/package.json index a99becaa37..75831a360a 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dev": "turbo run dev --parallel", "dx": "turbo run dx", "lint": "turbo run lint", + "type-check": "turbo run type-check", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "prepare": "husky install" }, diff --git a/turbo.json b/turbo.json index 75a09d1601..411ba6900f 100644 --- a/turbo.json +++ b/turbo.json @@ -17,6 +17,9 @@ }, "lint": { "outputs": [] + }, + "type-check": { + "outputs": [] } } }