(packagePath)
| 12 | const packageSource = (packagePath) => |
| 13 | fileURLToPath(new URL(`../../packages/${packagePath}`, import.meta.url)); |
| 14 | const nodeModuleSource = (packagePath) => |
| 15 | fileURLToPath(new URL(`../../node_modules/${packagePath}`, import.meta.url)); |
| 16 | const localSource = (packagePath) => |
| 17 | fileURLToPath(new URL(packagePath, import.meta.url)); |
| 18 | const reactNativeWebStub = localSource("./src/previews/reactNativeWebStub.tsx"); |