Type-safe configuration access. Values originate from environment
variables and .env files, validated at startup.
get<T>(key: string): T | undefined
Reads a configuration value.
get<T>(key: string,options: { readonly default: T; }): T
Reads a configuration value with a fallback.
getOrThrow<T>(key: string): T
Reads a required configuration value.
has(key: string): boolean
Reports whether a key is present.