Home
last modified time | relevance | path

Searched refs:getStaticConfig (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/config/build/
H A DgetConfig.js7 exports.getStaticConfig = getStaticConfig;
63 function getStaticConfig(configPath) { function
H A DgetConfig.d.ts4 export declare function getStaticConfig(configPath: string): AppJSONConfig | ExpoConfig;
H A DgetConfig.js.map1getStaticConfig","JsonFile","read","json5"],"sources":["../src/getConfig.ts"],"sourcesContent":["i…
H A DConfig.js187 …const rawStaticConfig = paths.staticConfigPath ? (0, _getConfig().getStaticConfig)(paths.staticCon…
H A DConfig.js.map1getStaticConfig","rootConfig","staticConfig","packageJson","packageJsonPath","getPackageJsonAndPat…
/expo/packages/@expo/config/src/__tests__/
H A DgetConfig-test.ts4 import { getDynamicConfig, getStaticConfig } from '../getConfig';
161 describe(getStaticConfig, () => {
198 expect(getStaticConfig(paths.staticConfigPath!).name).toBe('app-config-json');
/expo/packages/@expo/config/src/
H A DgetConfig.ts36 export function getStaticConfig(configPath: string): AppJSONConfig | ExpoConfig { function
H A DConfig.ts21 import { getDynamicConfig, getStaticConfig } from './getConfig';
92 const rawStaticConfig = paths.staticConfigPath ? getStaticConfig(paths.staticConfigPath) : null; constant