From 99b2bd784a30544be9e576764f0cc0a60a33b547 Mon Sep 17 00:00:00 2001 From: TomvdPeet <47384651+TomvdPeet@users.noreply.github.com> Date: Tue, 16 Dec 2025 01:19:48 +0100 Subject: [PATCH] Fix comments for includeSources and excludeSources (#1998) Co-authored-by: Aaron --- packages/wxt/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/wxt/src/types.ts b/packages/wxt/src/types.ts index b1ef253b..f0c1f366 100644 --- a/packages/wxt/src/types.ts +++ b/packages/wxt/src/types.ts @@ -200,7 +200,7 @@ export interface InlineConfig { * * @example * [ - * "coverage", // Ignore the coverage directory in the `sourcesRoot` + * "coverage", // Include the coverage directory in the `sourcesRoot` * ] */ includeSources?: string[]; @@ -213,7 +213,7 @@ export interface InlineConfig { * * @example * [ - * "coverage", // Include the coverage directory in the `sourcesRoot` + * "coverage", // Ignore the coverage directory in the `sourcesRoot` * ] */ excludeSources?: string[];