.nycrc 270 B

1234567891011121314151617
  1. {
  2. "extension": [
  3. ".js",
  4. ".cjs",
  5. ".mjs"
  6. ],
  7. "all": true,
  8. "check-coverage": false,
  9. "reporter": ["text-summary", "text", "html", "json", "lcov"],
  10. "exclude": [
  11. "coverage",
  12. "example",
  13. "test"
  14. ],
  15. "sourceMap": true,
  16. "instrument": true
  17. }