From e9636d30c8c18e3a8d411f6c68443ffbb4a9fda8 Mon Sep 17 00:00:00 2001 From: emergent-agent-e1 Date: Sat, 8 Nov 2025 10:07:36 +0000 Subject: [PATCH] auto-commit for c27e84ba-d93d-4a01-ae9e-1a7c30e2da92 --- frontend/babel.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 frontend/babel.config.js diff --git a/frontend/babel.config.js b/frontend/babel.config.js new file mode 100644 index 00000000..0c2c98c1 --- /dev/null +++ b/frontend/babel.config.js @@ -0,0 +1,13 @@ +module.exports = function (api) { + api.cache(true); + return { + presets: [ + [ + 'babel-preset-expo', + { + unstable_transformImportMeta: true, // Enable import.meta polyfill + }, + ], + ], + }; +};