Home
last modified time | relevance | path

Searched refs:baseUrl (Results 1 – 25 of 39) sorted by relevance

12

/expo/packages/expo-asset/src/
H A DAssetSources.ts78 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 DAssetSources.js48 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 DAssetSources.js.map1baseUrl = new URL(`http://${manifest2.extra.expoGo.debuggerHost}`);\n baseUrl.set('pathname', m…
/expo/packages/@expo/cli/src/utils/tsconfig/
H A DloadTsConfigPaths.ts9 baseUrl: string;
16 baseUrl?: string;
28 if (config.compilerOptions?.baseUrl) {
31 baseUrl: path.resolve(dir, config.compilerOptions.baseUrl),
37 baseUrl: dir,
H A DresolveWithTsConfigPaths.ts13 config: { paths: Paths; baseUrl: string },
47 const possibleResult = path.join(config.baseUrl, nextModuleName);
/expo/packages/@expo/cli/src/utils/tsconfig/__tests__/
H A DloadTsConfigPaths.test.ts29 expect(await loadTsConfigPathsAsync('/')).toEqual({ baseUrl: '/', paths: undefined });
36 baseUrl: 'src',
46 baseUrl: '/src',
55 baseUrl: 'src',
66 baseUrl: '/src',
H A DresolveWithTsConfigPaths.test.ts12 baseUrl: '.',
32 baseUrl: './src',
52 baseUrl: '.',
73 baseUrl: '.',
/expo/packages/@expo/metro-runtime/src/error-overlay/modules/openFileInEditor/
H A Dindex.ts7 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 Dindex.js7 const baseUrl = window.location.protocol + '//' + window.location.host;
8 fetch(baseUrl + '/open-stack-frame', {
H A Dindex.js.map1 …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 Dindex.js11 const baseUrl = typeof window === 'undefined'
14 const response = await fetch(baseUrl + '/symbolicate', {
H A Dindex.js.map1baseUrl =\n typeof window === 'undefined'\n ? process.env.EXPO_DEV_SERVER_ORIGIN\n : …
/expo/packages/@expo/cli/src/api/rest/
H A DwrapFetchWithBaseUrl.ts11 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 Dindex.ts27 const baseUrl = constant
32 const response = await fetch(baseUrl + '/symbolicate', {
/expo/packages/expo-notifications/src/
H A DgetExpoPushTokenAsync.ts80 const baseUrl = options.baseUrl ?? productionBaseUrl; constant
81 const url = options.url ?? `${baseUrl}push/getExpoPushToken`;
122 if (options.url || options.baseUrl) {
H A DTokens.types.ts70 baseUrl?: string; property
/expo/packages/expo-notifications/build/
H A DgetExpoPushTokenAsync.js61 const baseUrl = options.baseUrl ?? productionBaseUrl;
62 const url = options.url ?? `${baseUrl}push/getExpoPushToken`;
93 if (options.url || options.baseUrl) {
H A DTokens.types.d.ts58 baseUrl?: string; property
/expo/packages/@expo/cli/src/start/server/metro/
H A DwithMetroMultiPlatform.ts157 baseUrl: tsconfig.baseUrl,
173 baseUrl: tsConfigPaths.baseUrl,
237 if (tsconfig?.baseUrl && isTsconfigPathsEnabled) {
243 tsconfig.baseUrl,
/expo/packages/jest-expo/src/preset/
H A DwithTypescriptMapping.js59 if (config?.compilerOptions?.baseUrl) {
60 pathPrefix = path.join(pathPrefix, config.compilerOptions.baseUrl);
/expo/docs/ui/components/CommandMenu/
H A DCommandMenu.tsx77 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 DwithMetroMultiPlatform.test.ts88 tsconfig: { baseUrl: '/src', paths: { '/*': ['*'] } },
115 tsconfig: { baseUrl: '/src', paths: { '/*': ['*'] } },
/expo/packages/@expo/cli/src/start/server/type-generation/__tests__/
H A DstartTypescriptTypeGeneration.test.ts103 baseUrl: '.',
/expo/docs/pages/guides/
H A Dtypescript.mdx123 "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 DRNCWebViewManagerImpl.kt113 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>()

12