https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 77d011d92ce261d8f47eff9e9dcc167679345b44 authored by ankit-tailor on 11 March 2022, 13:30:55 UTC
fix: remove destructuring of resolvedProps
Tip revision: 77d011d
babel.config.js
const path = require('path');
const pak = require('../package.json');

module.exports = function (api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: [
      [
        'module-resolver',
        {
          alias: {
            // For development, we want to alias the library to the source
            [pak.name]: path.join(__dirname, '..', pak.source),
          },
        },
      ],
    ],
  };
};
back to top