Package Exports
- lasso-istanbul-instrument-transform
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lasso-istanbul-instrument-transform) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
lasso-istanbul-instrument-transform
Lasso.js transform that uses Istanbul to instrument ES6 code to ES5 for code coverage.
Prerequisites
This transform requires Lasso v2+
Installation
npm install lasso-istanbul-instrument-transform --save-dev
Usage
require('lasso').configure({
require: {
transforms: [
{
transform: 'lasso-istanbul-instrument-transform',
config: {
extensions: ['.js', '.es6'] // Enabled file extensions. Default: ['.js', '.es6']
}
}
]
}
});