A React Native app for the ultimate thinking partner.
1module.exports = function (api) {
2 api.cache(true);
3 return {
4 presets: [
5 [
6 'babel-preset-expo',
7 {
8 web: {
9 // Hermes (web) doesn’t support import.meta; transform it for deps like Zustand ESM
10 unstable_transformImportMeta: true,
11 },
12 },
13 ],
14 ],
15 plugins: [
16 [
17 'module-resolver',
18 {
19 alias: {
20 '@': './src',
21 },
22 },
23 ],
24 ],
25 };
26};