feat(env): add verbose environment variable support
- Introduces a static getter to fetch the VERBOSE environment variable
This commit is contained in:
@@ -60,4 +60,9 @@ export class Env {
|
|||||||
}
|
}
|
||||||
return this._ltServerPort;
|
return this._ltServerPort;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** VERBOSE */
|
||||||
|
static get verbose(): boolean {
|
||||||
|
return this.getEnv('VERBOSE') === 'true';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user