| /expo/packages/expo-asset/src/ |
| H A D | AssetSources.ts | 78 const baseUrl = new URL(`http://${manifest2.extra.expoGo.debuggerHost}`); constant 79 baseUrl.set('pathname', meta.httpServerLocation + suffix); 82 uri: baseUrl.href, 89 const baseUrl = new URL(getManifest().bundleUrl); constant 90 baseUrl.set('pathname', meta.httpServerLocation + suffix); 91 return { uri: baseUrl.href, hash }; 116 const baseUrl = new URL(manifestBaseUrl); constant 117 const resolvedPath = uri.startsWith('/') ? uri : path.join(baseUrl.pathname, uri); 118 baseUrl.set('pathname', resolvedPath); 119 return baseUrl.href;
|
| /expo/packages/expo-asset/build/ |
| H A D | AssetSources.js | 48 const baseUrl = new URL(`http://${manifest2.extra.expoGo.debuggerHost}`); 49 baseUrl.set('pathname', meta.httpServerLocation + suffix); 51 uri: baseUrl.href, 57 const baseUrl = new URL(getManifest().bundleUrl); 58 baseUrl.set('pathname', meta.httpServerLocation + suffix); 59 return { uri: baseUrl.href, hash }; 80 const baseUrl = new URL(manifestBaseUrl); 81 const resolvedPath = uri.startsWith('/') ? uri : path.join(baseUrl.pathname, uri); 82 baseUrl.set('pathname', resolvedPath); 83 return baseUrl.href;
|
| H A D | AssetSources.js.map | 1 …baseUrl = new URL(`http://${manifest2.extra.expoGo.debuggerHost}`);\n baseUrl.set('pathname', m…
|
| /expo/packages/@expo/cli/src/utils/tsconfig/ |
| H A D | loadTsConfigPaths.ts | 9 baseUrl: string; 16 baseUrl?: string; 28 if (config.compilerOptions?.baseUrl) { 31 baseUrl: path.resolve(dir, config.compilerOptions.baseUrl), 37 baseUrl: dir,
|
| H A D | resolveWithTsConfigPaths.ts | 13 config: { paths: Paths; baseUrl: string }, 47 const possibleResult = path.join(config.baseUrl, nextModuleName);
|
| /expo/packages/@expo/cli/src/utils/tsconfig/__tests__/ |
| H A D | loadTsConfigPaths.test.ts | 29 expect(await loadTsConfigPathsAsync('/')).toEqual({ baseUrl: '/', paths: undefined }); 36 baseUrl: 'src', 46 baseUrl: '/src', 55 baseUrl: 'src', 66 baseUrl: '/src',
|
| H A D | resolveWithTsConfigPaths.test.ts | 12 baseUrl: '.', 32 baseUrl: './src', 52 baseUrl: '.', 73 baseUrl: '.',
|
| /expo/packages/@expo/metro-runtime/src/error-overlay/modules/openFileInEditor/ |
| H A D | index.ts | 7 const baseUrl = window.location.protocol + '//' + window.location.host; constant 9 fetch(baseUrl + '/open-stack-frame', {
|
| /expo/packages/@expo/metro-runtime/build/error-overlay/modules/openFileInEditor/ |
| H A D | index.js | 7 const baseUrl = window.location.protocol + '//' + window.location.host; 8 fetch(baseUrl + '/open-stack-frame', {
|
| H A D | index.js.map | 1 …ls/open-stack-frame`.\n const baseUrl = window.location.protocol + '//' + window.location.host;…
|
| /expo/packages/@expo/metro-runtime/build/error-overlay/modules/symbolicateStackTrace/ |
| H A D | index.js | 11 const baseUrl = typeof window === 'undefined' 14 const response = await fetch(baseUrl + '/symbolicate', {
|
| H A D | index.js.map | 1 …baseUrl =\n typeof window === 'undefined'\n ? process.env.EXPO_DEV_SERVER_ORIGIN\n : …
|
| /expo/packages/@expo/cli/src/api/rest/ |
| H A D | wrapFetchWithBaseUrl.ts | 11 export function wrapFetchWithBaseUrl(fetch: FetchLike, baseUrl: string): FetchLike { 17 const parsed = new URL(url, baseUrl);
|
| /expo/packages/@expo/metro-runtime/src/error-overlay/modules/symbolicateStackTrace/ |
| H A D | index.ts | 27 const baseUrl = constant 32 const response = await fetch(baseUrl + '/symbolicate', {
|
| /expo/packages/expo-notifications/src/ |
| H A D | getExpoPushTokenAsync.ts | 80 const baseUrl = options.baseUrl ?? productionBaseUrl; constant 81 const url = options.url ?? `${baseUrl}push/getExpoPushToken`; 122 if (options.url || options.baseUrl) {
|
| H A D | Tokens.types.ts | 70 baseUrl?: string; property
|
| /expo/packages/expo-notifications/build/ |
| H A D | getExpoPushTokenAsync.js | 61 const baseUrl = options.baseUrl ?? productionBaseUrl; 62 const url = options.url ?? `${baseUrl}push/getExpoPushToken`; 93 if (options.url || options.baseUrl) {
|
| H A D | Tokens.types.d.ts | 58 baseUrl?: string; property
|
| /expo/packages/@expo/cli/src/start/server/metro/ |
| H A D | withMetroMultiPlatform.ts | 157 baseUrl: tsconfig.baseUrl, 173 baseUrl: tsConfigPaths.baseUrl, 237 if (tsconfig?.baseUrl && isTsconfigPathsEnabled) { 243 tsconfig.baseUrl,
|
| /expo/packages/jest-expo/src/preset/ |
| H A D | withTypescriptMapping.js | 59 if (config?.compilerOptions?.baseUrl) { 60 pathPrefix = path.join(pathPrefix, config.compilerOptions.baseUrl);
|
| /expo/docs/ui/components/CommandMenu/ |
| H A D | CommandMenu.tsx | 77 baseUrl: expoDocsItem.url.replace(/#.+/, ''), 79 'baseUrl' 97 .sort((a, b) => a.url.localeCompare(a.baseUrl) - b.url.localeCompare(b.baseUrl))
|
| /expo/packages/@expo/cli/src/start/server/metro/__tests__/ |
| H A D | withMetroMultiPlatform.test.ts | 88 tsconfig: { baseUrl: '/src', paths: { '/*': ['*'] } }, 115 tsconfig: { baseUrl: '/src', paths: { '/*': ['*'] } },
|
| /expo/packages/@expo/cli/src/start/server/type-generation/__tests__/ |
| H A D | startTypescriptTypeGeneration.test.ts | 103 baseUrl: '.',
|
| /expo/docs/pages/guides/ |
| H A D | typescript.mdx | 123 "baseUrl": ".", 198 You can modify the base directory in the tsconfig.json (or jsconfig.json) using the [baseUrl](https… 203 "baseUrl": "src" 210 - [`compilerOptions.baseUrl`](https://www.typescriptlang.org/docs/handbook/module-resolution.html#b… 212 - Restarting Expo CLI is necessary to update [`compilerOptions.baseUrl`](https://www.typescriptlang…
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/webview/ |
| H A D | RNCWebViewManagerImpl.kt | 113 val baseUrl = urlObj.protocol + "://" + urlObj.host in <lambda>() constant 114 val cookie = CookieManager.getInstance().getCookie(baseUrl) in <lambda>() 375 val baseUrl = if (source.hasKey("baseUrl")) source.getString("baseUrl") else "" in <lambda>() constant 377 baseUrl, in <lambda>()
|