Browse Source

build: Remove 'exports' from sourcemaps sources prefix (#11438)

The default libraryTarget in webpack is `var`, and we were not
explicitly using the 'exports' variable anywhere in the global scope.
Evan Purkhiser 6 years ago
parent
commit
0215836598
1 changed files with 0 additions and 2 deletions
  1. 0 2
      webpack.config.js

+ 0 - 2
webpack.config.js

@@ -276,8 +276,6 @@ const appConfig = {
   output: {
     path: distPath,
     filename: '[name].js',
-    libraryTarget: 'var',
-    library: 'exports',
     sourceMapFilename: '[name].js.map',
   },
   optimization: {