mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 09:53:40 +02:00
Adds the original NestJS backends (backend, audio-backend), Expo mobile app, and Astro landing page as-is from the standalone memoro repo. These are not yet migrated to monorepo standards (migration tracked in memory/CLAUDE.md). Also adds eslint.config.mjs ignore for apps/*/apps/audio-backend/** and .prettierignore entries for legacy memoro dirs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
316 B
JavaScript
12 lines
316 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
const plugins = [
|
|
// Reanimated plugin is automatically handled by babel-preset-expo in Expo SDK 55
|
|
// No need to manually add it here
|
|
];
|
|
|
|
return {
|
|
presets: [['babel-preset-expo', { jsxImportSource: 'nativewind' }], 'nativewind/babel'],
|
|
plugins,
|
|
};
|
|
};
|