| 123456789101112131415161718192021222324 |
- /* eslint-disable */
- const path = require("path");
- const {
- getConfig
- } = require("react-native-builder-bob/babel-config");
- const pkg = require("../package.json");
- module.exports = function (api) {
- api.cache(true);
- const root = path.resolve(__dirname, "..");
- return getConfig(
- {
- presets: [
- "babel-preset-expo"
- ],
- },
- {
- root,
- pkg
- }
- );
- };
|