thelounge/.nycrc
Jérémie Astori 056aba8a9e Switch istanbul CLI to more recent nyc one
`nyc` is made by the Istanbul people and is meant to integrate nicely with Babel.
Note that at the moment this is just a drop-in replacement of what we currently have in order to fix broken `npm run coverage`, therefore it does not support our recent ES6 stuff.
2016-12-29 02:51:26 -05:00

15 lines
192 B
JSON

{
"all": true,
"exclude": [
"client/js/bundle.js",
"client/js/bundle.vendor.js",
"coverage/",
"test/"
],
"reporter": [
"lcov",
"text",
"text-summary"
]
}