Skip to content

Commit

Permalink
Add origin source mappings, fix #24
Browse files Browse the repository at this point in the history
  • Loading branch information
artberri committed Dec 28, 2020
1 parent db6494d commit 4cb659f
Show file tree
Hide file tree
Showing 9 changed files with 1,115 additions and 4,395 deletions.
14 changes: 13 additions & 1 deletion examples/karma/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,26 @@ module.exports = (config) => {

rollupPreprocessor: {
plugins: [

babel({
babelHelpers: 'bundled',
presets: [
[
'@babel/preset-env',
{
loose: true,
modules: false
}
]
]
}),
istanbul({
exclude: ['spec/**/*.spec.js'],
sourceMap: true,
instrumenterConfig: {
produceSourceMap: true
},
}),
babel({ babelHelpers: 'bundled' }),
],
output: {
format: 'iife',
Expand Down

0 comments on commit 4cb659f

Please sign in to comment.