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

12
mobileLst/metro.config.ts Normal file
View File

@@ -0,0 +1,12 @@
const { getDefaultConfig } = require("@expo/metro-config");
const path = require("path");
const projectRoot = __dirname;
const config = getDefaultConfig(projectRoot);
config.resolver.alias = {
...config.resolver.alias,
"@": path.resolve(projectRoot),
};
module.exports = config;