b61f929cf7
packages/shared/src/index.ts and all sub-modules used .js extensions on relative imports (e.g. './admin/index.js') pointing at .ts source files. TypeScript with moduleResolution: "Bundler" doesn't need them, and Metro's eager exporter (used for preview / production builds) reads them literally and fails — only the dev-server Metro fell back to .ts. Workspace typecheck remains 8/8 green; Vite and TS Bundler resolution already accept both styles, so desktop is unaffected.
5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
export * from './backend';
|
|
export * from './box';
|
|
export * from './keys';
|
|
export * from './sessionKeys';
|