mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 09:03:02 +00:00
feat: enable stricter typescript compiler options
This commit is contained in:
24
packages/logger/environment.d.ts
vendored
Normal file
24
packages/logger/environment.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
declare global {
|
||||
namespace NodeJS {
|
||||
interface ProcessEnv {
|
||||
/**
|
||||
* If set to true, invalid smtp configs will not throw an error
|
||||
*/
|
||||
ALLOW_NO_TRANSPORT?: 'true' | string;
|
||||
SMTP_AUTH_USER?: string;
|
||||
SMTP_AUTH_PASSWORD?: string;
|
||||
SMTP_SENDER_MAIL?: string;
|
||||
SMTP_SENDER_NAME?: string;
|
||||
SMTP_HOST?: string;
|
||||
SMTP_PORT?: string;
|
||||
SMTP_CC?: string;
|
||||
SMTP_RECIPIENTS?: string;
|
||||
SMTP_SECURE?: 'true' | string;
|
||||
STAPPS_LOG_LEVEL?: string;
|
||||
STAPPS_EXIT_LEVEL?: string;
|
||||
NODE_ENV?: string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export {};
|
||||
Reference in New Issue
Block a user