diff --git a/src/env.ts b/src/env.ts index 5773d28..2356007 100644 --- a/src/env.ts +++ b/src/env.ts @@ -60,4 +60,9 @@ export class Env { } return this._ltServerPort; } + + /** VERBOSE */ + static get verbose(): boolean { + return this.getEnv('VERBOSE') === 'true'; + } }