Skip to content

Commit 17c3bf1

Browse files
authored
ci: fix excessive memory usage by preventing source-map generation (open-telemetry#1419)
1 parent 62a806f commit 17c3bf1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

karma.webpack.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ module.exports = {
3232
test: /\.ts$/,
3333
use: {
3434
loader: '@jsdevtools/coverage-istanbul-loader',
35-
options: { esModules: true }
35+
options: {
36+
produceSourceMap: false,
37+
esModules: true
38+
}
3639
}
3740
},
3841
// This setting configures Node polyfills for the browser that will be

0 commit comments

Comments
 (0)