forked from Ivasoft/mattermost-mobile
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
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',
|
|
['@babel/plugin-proposal-decorators', {legacy: true}],
|
|
['module-resolver', {
|
|
root: ['.'],
|
|
alias: {
|
|
'@assets': './dist/assets',
|
|
'@actions': './app/actions',
|
|
'@components': './app/components',
|
|
'@constants': './app/constants',
|
|
'@i18n': './app/i18n',
|
|
'@init': './app/init',
|
|
'@notifications': './app/notifications',
|
|
'@share': './share_extension',
|
|
'@screens': './app/screens',
|
|
'@selectors': './app/selectors',
|
|
'@store': './app/store',
|
|
'@telemetry': './app/telemetry',
|
|
'@utils': './app/utils',
|
|
'@websocket': './app/client/websocket',
|
|
},
|
|
}],
|
|
['module:react-native-dotenv', {
|
|
moduleName: '@env',
|
|
path: '.env',
|
|
blacklist: null,
|
|
whitelist: null,
|
|
safe: false,
|
|
allowUndefined: true,
|
|
}],
|
|
],
|
|
exclude: ['**/*.png', '**/*.jpg', '**/*.gif'],
|
|
};
|