auto-commit for c27e84ba-d93d-4a01-ae9e-1a7c30e2da92

This commit is contained in:
emergent-agent-e1
2025-11-08 10:07:36 +00:00
parent 8ed8fb904f
commit e9636d30c8
+13
View File
@@ -0,0 +1,13 @@
module.exports = function (api) {
api.cache(true);
return {
presets: [
[
'babel-preset-expo',
{
unstable_transformImportMeta: true, // Enable import.meta polyfill
},
],
],
};
};