LCOV reporter for nyc that outputs absolute file paths to lcov.info
npm install nyc-report-lcov-absoluteLCOV reporter for nyc that outputs absolute file paths to lcov.info.
Install the package:
```
npm install --save-dev nyc-report-lcov-absolute
Then use it either from the command line:
``
nyc --reporter nyc-report-lcov-absolute [command]
...or in package.json:
```
{
"nyc": {
"reporter": [
"nyc-report-lcov-absolute"
]
}
}