(p: string)
| 1784 | const importerOutRel = outputDirOverrideRel || getProjectRelativeImportPath(importerPath, projectRoot) || stripToProjectRelative(importerPath, projectRoot).replace(/\.(ts|js|tsx|jsx|mjs|mts|cts)$/i, '.mjs'); |
| 1785 | const importerOutDir = importerOutRel ? path.posix.dirname(importerOutRel) : ''; |
| 1786 | const ensureRel = (p: string) => (p.startsWith('.') ? p : `./${p}`); |
| 1787 | |
| 1788 | // Normalize all @nativescript/core imports to the unified HTTP ESM core bridge to guarantee a single realm on device |
| 1789 | try { |
no outgoing calls
no test coverage detected