chore: replace dotenv-mono with dotenv and try to fix env variables (#1261)

This commit is contained in:
Ralph Khreish
2025-10-02 11:52:25 +02:00
committed by GitHub
parent 2ea4bb6a81
commit 604b94baa9
7 changed files with 7 additions and 61 deletions

View File

@@ -20,7 +20,6 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"dotenv-mono": "^1.5.1",
"typescript": "^5.9.2"
},
"dependencies": {

View File

@@ -43,9 +43,9 @@ export const baseConfig: Partial<UserConfig> = {
export function mergeConfig(
base: Partial<UserConfig>,
overrides: Partial<UserConfig>
): Partial<UserConfig> {
): UserConfig {
return {
...base,
...overrides
};
} as UserConfig;
}