feat(env): add verbose environment variable support

- Introduces a static getter to fetch the VERBOSE environment variable
This commit is contained in:
2025-05-11 09:54:09 +02:00
parent 36f2999cc9
commit 53939d051a

View File

@@ -60,4 +60,9 @@ export class Env {
}
return this._ltServerPort;
}
/** VERBOSE */
static get verbose(): boolean {
return this.getEnv('VERBOSE') === 'true';
}
}