We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If the user sets nyc options in package.json file, they are ignored when generating the report:
nyc
package.json
{ "nyc": { "exclude": ["src/serviceWorker.ts"] } }
This is because we do not use nyc report ... CLI command that reads all options and merges them, but we are using the NPM module API
nyc report ...