diff --git a/src/get-options-overrides.ts b/src/get-options-overrides.ts index db67db5..a12f709 100644 --- a/src/get-options-overrides.ts +++ b/src/get-options-overrides.ts @@ -71,5 +71,5 @@ export function createFilter(context: IContext, pluginOptions: IOptions, parsedC context.debug(() => `included:\n${JSON.stringify(included, undefined, 4)}`); context.debug(() => `excluded:\n${JSON.stringify(excluded, undefined, 4)}`); - return createRollupFilter(included, excluded); + return createRollupFilter(included, excluded, { resolve: parsedConfig.options.rootDir }); }