fix(#7015): Generate source maps for generating code coverage metrics (#7582)

* fix(?): the robot says to do this...

* refactor: remove unused env var

---------

Co-authored-by: John Hill <john.c.hill@nasa.gov>
This commit is contained in:
Jesse Mazzella 2024-03-12 17:02:41 -07:00 committed by GitHub
parent 5f0bd10c61
commit cb4c59a464
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,11 +5,8 @@ information to pull requests.
*/
import config from './webpack.dev.js';
// eslint-disable-next-line no-undef
const CI = process.env.CI === 'true';
config.devtool = CI ? false : undefined;
config.devtool = 'source-map';
config.devServer.hot = false;
config.module.rules.push({