first tests

This commit is contained in:
Jakob Stornig 2023-11-30 01:48:22 +01:00
parent 66d33ce07e
commit 55c9f605ff
11 changed files with 14523 additions and 84 deletions

11
babel.config.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
"@babel/plugin-proposal-export-namespace-from",
"react-native-reanimated/plugin",
require.resolve("expo-router/babel"),
],
};
};