Env
@tsed/core
Usage
typescript
import { Env } from "@tsed/core";Overview
ts
enum Env {
PROD = "production",
DEV = "development",
TEST = "test"
}Description
Represents the current application runtime environment.
Used by Ts.ED to adapt behaviors (logging, error verbosity, defaults, etc.) depending on the environment.
PROD
ts
PROD = "production",DEV
ts
DEV = "development",TEST
ts
TEST = "test"