Files
Galaxies-shoppingapp/babel.config.js
T
Dennis Hundertmark b24544f115 Initial commit
Generated by create-expo-app 3.2.0.
2025-05-20 15:23:02 +02:00

12 lines
175 B
JavaScript

module.exports = function(api) {
api.cache(true);
return {
presets: [
['babel-preset-expo', {
unstable_transformImportMeta: true
}]
]
};
};