aboutsummaryrefslogtreecommitdiffstats
path: root/babel.config.js
blob: 77c28f9535599c28c0d6881c90fe6b8b3e971c22 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = function(api) {
  api.cache(true);
  return {
    presets: [
      ["babel-preset-expo", { jsxImportSource: "nativewind" }],
      "nativewind/babel",
    ],
  };
};