From d3d50d6d910768a6e6adc9f0742762b1bef67d39 Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Thu, 29 Aug 2024 18:27:55 +0000 Subject: [PATCH] chore: run tsc as part of lint script --- scripts/lint | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/lint b/scripts/lint index 4af1de0..6ba75df 100755 --- a/scripts/lint +++ b/scripts/lint @@ -6,3 +6,6 @@ cd "$(dirname "$0")/.." echo "==> Running eslint" ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js . + +echo "==> Running tsc" +./node_modules/.bin/tsc --noEmit