babel.config.js 268 B

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