From 80a8e28af95c73c6cbb6ed69979f2dba072e1d85 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:02:14 +1100 Subject: [PATCH] Run tsc with lint script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cc980ff6..9827ee24 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,9 @@ "start": "vite", "build": "vite build", "test": "vitest", - "lint": "npm run lint:code && npm run lint:css", + "lint": "npm run lint:code && npm run lint:ts && npm run lint:css", "lint:code": "eslint", + "lint:ts": "tsc --noEmit", "lint:css": "stylelint src/**/*.css" } }