babel.config.js 237 B

1234567891011121314
  1. module.exports = function (api) {
  2. api.cache(true);
  3. return {
  4. presets: ["babel-preset-expo"],
  5. plugins: [
  6. [
  7. "import",
  8. {
  9. libraryName: "@ant-design/react-native",
  10. },
  11. ],
  12. ],
  13. };
  14. };