廓形仪rn版本-技术调研
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
445 B

  1. module.exports = function(api) {
  2. api.cache(true);
  3. api.cache(true);
  4. return {
  5. presets: [["babel-preset-expo", {
  6. jsxImportSource: "nativewind"
  7. }], "nativewind/babel"],
  8. env: {
  9. production: {
  10. plugins: ['react-native-paper/babel'],
  11. },
  12. },
  13. plugins: [["module-resolver", {
  14. root: ["./"],
  15. alias: {
  16. "@": "./",
  17. "tailwind.config": "./tailwind.config.js"
  18. }
  19. }]]
  20. };
  21. };