test(mobile): stallion intergration starts

This commit is contained in:
2025-11-16 20:21:08 -06:00
parent 75c0659658
commit 20fc286069
7 changed files with 7667 additions and 80 deletions

17
mobileLst/babel.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
[
"module-resolver",
{
root: ["./"],
alias: {
"@": "./",
},
},
],
],
};
};