I am converting a script module to a manifest module.
In the script module I do the below at the end
#
# Whole module Verbose output
#
# We will output verbose "Continue"
# We will NOT output verbose "SilentlyContinue"
$GlobalVerbosePreference = "Continue"
$VerbosePreference = $GlobalVerbosePreference
# Set default error action preference
$ErrorActionPreference = "Stop"
How do you do this in a manifest?