Files
self/packages/mobile-sdk-alpha/scripts/shimConfigs.js
Aaron DeRuvo 3aabfc984a moves ofac and protocol store (#1012)
* move ofact tree fetch to common

* move protocol store to the msdk, fix some dependencies on msdk
2025-09-09 13:31:43 +02:00

11 lines
501 B
JavaScript

// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
// Shim configurations for Metro compatibility
export const shimConfigs = [
{ shimPath: 'browser', targetPath: '../esm/browser.js', name: 'browser' },
{ shimPath: 'constants/analytics', targetPath: '../../esm/constants/analytics.js', name: 'constants/analytics' },
{ shimPath: 'stores', targetPath: '../esm/stores.js', name: 'stores' },
];