Skip to content

Commit

Permalink
update options comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cenfun committed Dec 2, 2023
1 parent f4bf9f7 commit 2859d44
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,24 @@ module.exports = {
lcov: false,

// (Function) A filter function to execute for each element in the V8 list. (V8 only)
// entryFilter: (entry) => {
// if (entry.url.indexOf('googleapis.com') !== -1) {
// return false;
// }
// return true;
// },
entryFilter: null,

// (Function) A filter function to execute for each element in the sources which unpacked from the source map. (Sourcemap only)
// sourceFilter: (sourcePath) => sourcePath.search(/src\/.+/) !== -1,
sourceFilter: null,

// source path handler. (Istanbul only)
// sourcePath: (filePath) => `wwwroot/${filePath}`,
sourcePath: null,

// (usually not used) source finder for Istanbul HTML report. (Istanbul only)
// sourceFinder: (filePath) => `src/${filePath}`,
sourceFinder: null,

// (Array) watermarks for low/medium/high. Defaults to [50, 80]
Expand Down

0 comments on commit 2859d44

Please sign in to comment.