* WaterMelon Db Integration * Fix flow * Success Icon fix * Deleting offline images - once sync * Fix api fail * Watermelon DB - fix delete flow * Fix review comment * Fix review comment - change js to ts files
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
module.exports = {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
plugins: [
|
|
["@babel/plugin-proposal-decorators", { legacy: true }],
|
|
[
|
|
require.resolve('babel-plugin-module-resolver'),
|
|
{
|
|
cwd: 'babelrc',
|
|
extensions: ['.ts', '.tsx', '.js', '.ios.js', '.android.js'],
|
|
alias: {
|
|
'@cuteapp': './app'
|
|
}
|
|
}
|
|
],
|
|
'jest-hoist'
|
|
],
|
|
};
|