Fix comments for includeSources and excludeSources (#1998)

Co-authored-by: Aaron <aaronklinker1@gmail.com>
This commit is contained in:
TomvdPeet
2025-12-16 01:19:48 +01:00
committed by GitHub
parent 31ebf966fd
commit 99b2bd784a
+2 -2
View File
@@ -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[];