#!/bin/sh
# Run TypeScript type-checking before each commit.
# Babel strips types without checking them, so this is what actually
# enforces type correctness. Bypass with `git commit --no-verify`.

npm run typecheck
