From 78397f0560cef66c2b79274a520e7c6efeb2b5ff Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Tue, 15 Aug 2023 21:24:45 +1000 Subject: [PATCH] chore: `deno task check:types` (#426) --- deno.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deno.json b/deno.json index b5ae3e820085..6e0d5bd4785c 100644 --- a/deno.json +++ b/deno.json @@ -8,7 +8,8 @@ "start": "deno run --unstable -A --watch=static/,routes/ dev.ts", "test": "KV_PATH=:memory: deno test -A --unstable --parallel --coverage=./cov", "check:license": "deno run --allow-read --allow-write tools/check_license.ts", - "ok": "deno fmt --check && deno lint && deno task check:license --check && deno check main.ts && deno task test", + "check:types": "deno check **/*.ts && deno check **/*.tsx", + "ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test", "cov": "deno coverage ./cov/ --lcov --exclude='test.ts' > cov.lcov", "update": "deno run -A -r https://fresh.deno.dev/update ." },