79703123

Date: 2025-07-16 08:29:43
Score: 0.5
Natty:
Report link

Solution was to update my tsconfig file. I didn't think Metro relied on TS because I thought Metro and TypeScript resolution worked separately, but apparently the TS alias was essential for the Metro build. I think Metro relies on the tsconfig to resolve imports, so without it, Metro didn't understand the alias

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@outputs/*": ["../shared/*"]
    }
  },
  "include": ["src/**/*", "../shared/**/*"]
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mnai