isparta-loader
isparta-loader copied to clipboard
💯 isparta instrumenter loader for webpack
Does this support typescript?
Hey, first of all thanks for the loader, been serving me for quite some time 👍 . As of Webpack 2 adding properties to the main config is disallowed. Loaders...
this is a part of my **karma.conf.js**: ``` javascript preLoaders: [ { test: /\.js$/, loader: 'isparta', include: path.resolve(__dirname, './src/'), query: { babel: { presets: ['es2015', 'stage-0', 'react'] } } }...
sourcemaps
Anyway to keep sourcemaps at the right line?
After banging my head on the wall for days, I found out that isparta-loader doesn't correctly pass the babel options via query in webpack config. ``` module: { preLoaders: [{...
Hi my isparta is working with the following config: ``` javascript { test: /\.(js|jsx)$/, include: path.resolve('src/'), loader: 'isparta' } ``` But the coverage report only shows the components with tests,...
I use `babel-plugin-transform-decorators-legacy` in my project, but when isparta preloads the files, it throws an error because of the decorators. I think I should tell isparta to use the `babel-plugin-transform-decorators-legacy`...
@deepsweet @ColCh