.nycrc.json 365 B

123456789101112131415161718192021222324
  1. {
  2. "include": [
  3. "**/*.js"
  4. ],
  5. "exclude": [
  6. "coverage/**",
  7. "test/**",
  8. "test{,-*}.js",
  9. "**/*.test.js",
  10. "**/__tests__/**",
  11. "**/node_modules/**",
  12. "**/*.spec.js"
  13. ],
  14. "reporter": [
  15. "lcov",
  16. "text"
  17. ],
  18. "check-coverage": true,
  19. "per-file": false,
  20. "statements": 100,
  21. "branches": 100,
  22. "functions": 100,
  23. "lines": 100
  24. }