Skip to content

Commit

Permalink
ci: fix excessive memory usage by preventing source-map generation (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc authored Mar 3, 2023
1 parent 62a806f commit 17c3bf1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion karma.webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ module.exports = {
test: /\.ts$/,
use: {
loader: '@jsdevtools/coverage-istanbul-loader',
options: { esModules: true }
options: {
produceSourceMap: false,
esModules: true
}
}
},
// This setting configures Node polyfills for the browser that will be
Expand Down

0 comments on commit 17c3bf1

Please sign in to comment.