forked from Ivasoft/mattermost-mobile
21 lines
553 B
JavaScript
21 lines
553 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
module.exports = {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
env: {
|
|
production: {
|
|
plugins: ['transform-remove-console'],
|
|
},
|
|
},
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
['module-resolver', {
|
|
root: ['.'],
|
|
alias: {
|
|
assets: './dist/assets',
|
|
},
|
|
}],
|
|
],
|
|
exclude: ['**/*.png', '**/*.jpg', '**/*.gif'],
|
|
};
|