From cb14aaca143c3aacc905e9a8fcbddb89b3dcd6ee Mon Sep 17 00:00:00 2001 From: zomars Date: Wed, 9 Feb 2022 15:45:25 -0700 Subject: [PATCH] Type check fixes --- package.json | 1 + turbo.json | 3 +++ 2 files changed, 4 insertions(+) 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": [] } } }