From 9cc4ffaf332d3a0627ee81325ec4fea7af2384ec Mon Sep 17 00:00:00 2001 From: "Arthur E. Jones" Date: Wed, 4 May 2022 15:15:54 -0500 Subject: [PATCH] build: add typecheck script --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c67d0b3..71744d5 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,9 @@ "main": "index.js", "scripts": { "start": "node app", - "lint": "eslint ." + "lint": "eslint .", + "types": "tsc --noEmit --incremental", + "verify": "yarn -s lint && yarn types" }, "dependencies": { "@actual-app/api": "^4.0.1",