pnpm --version || {
  echo "Pre-commit requires pnpm to be installed globally"
  exit 0
}

# Run TS typecheck
pnpm typecheck

# Formatting on staged files
pnpm lint-staged

