mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Configure babel to not compile ES6 imports/exports
Webpack can automatically handle the transpilation of ES6 imports to ES5. It can also better optimize transpilation as raw ES6 imports can be tree-shaken better.
This commit is contained in:
parent
3677dc9a8b
commit
ec5b31663f
1 changed files with 3 additions and 1 deletions
|
@ -45,7 +45,9 @@ module.exports = {
|
|||
use: [{
|
||||
loader: 'babel-loader',
|
||||
options: {
|
||||
presets: ['env'],
|
||||
presets: [
|
||||
['env', { modules: false }]
|
||||
],
|
||||
// Configure babel-loader to cache compiled output so that subsequent
|
||||
// compile runs are much faster
|
||||
cacheDirectory: true
|
||||
|
|
Loading…
Reference in a new issue