From 9b80b35c1695d0ea733f37fa14e2b91a0da84d4f Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 7 Nov 2022 23:13:20 +0100 Subject: [PATCH] fix: add missing glob --- packages/schema/src/config/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schema/src/config/common.ts b/packages/schema/src/config/common.ts index bfcf49639fa..c30c3f9ccbe 100644 --- a/packages/schema/src/config/common.ts +++ b/packages/schema/src/config/common.ts @@ -338,7 +338,7 @@ export default defineUntypedSchema({ $resolve: async (val, get) => [ '**/*.stories.{js,ts,jsx,tsx}', // ignore storybook files '**/*.{spec,test}.{js,ts,jsx,tsx}', // ignore tests - '**/.d.ts', // ignore type declarations + '**/*.d.ts', // ignore type declarations '.output', await get('ignorePrefix') && `**/${await get('ignorePrefix')}*.*` ].concat(val).filter(Boolean)