From ea0667aa89e110aaf2ebe727e750f95ded49bcdb Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Wed, 21 Feb 2024 22:07:43 +0100 Subject: [PATCH] fix(config): extend default ignores --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 5c7100d..0707466 100644 --- a/src/config.ts +++ b/src/config.ts @@ -91,7 +91,7 @@ export async function loadConfig( dotenv: true, overrides, defaults: { - ignore: ["node_modules", "dist", ".*"], + ignore: ["**/node_modules", "**/dist", "**/.*"], dir, }, });