Upgrade babel, webpack and storybook stack

This commit is contained in:
Yuya Ochiai
2018-11-27 23:21:29 +09:00
parent d9c66ff5b5
commit fa272ed92f
6 changed files with 2641 additions and 3717 deletions

19
babel.config.js Normal file
View File

@@ -0,0 +1,19 @@
// Copyright (c) 2015-2016 Yuya Ochiai
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
module.exports = (api) => { // eslint-disable-line import/no-commonjs
api.cache.forever();
return {
presets: [
['@babel/preset-env', {
targets: {
browsers: ['Electron >= 2.0'],
node: '8.9',
},
}],
'@babel/preset-react',
],
plugins: ['@babel/plugin-proposal-object-rest-spread', '@babel/plugin-proposal-class-properties'],
};
};