@expo/config-types 54.0.3 → 54.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ExpoConfig.d.ts +4 -0
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -253,6 +253,10 @@ export interface ExpoConfig {
|
|
|
253
253
|
* Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.
|
|
254
254
|
*/
|
|
255
255
|
experiments?: {
|
|
256
|
+
/**
|
|
257
|
+
* Apply Expo Autolinking's search results to Metro's module resolution. This forces your project's dependencies on `react`, `react-dom`, and `react-native`, and the autolinked versions of any Expo and React Native modules to be resolved when bundling your app. This prevents version misalignment and is useful for monorepos and to prevent conflicts.
|
|
258
|
+
*/
|
|
259
|
+
autolinkingModuleResolution?: boolean;
|
|
256
260
|
/**
|
|
257
261
|
* Export a website relative to a subpath of a domain. The path will be prepended as-is to links to all bundled resources. Prefix the path with a `/` (recommended) to load all resources relative to the server root. If the path **does not** start with a `/` then resources will be loaded relative to the code that requests them, this could lead to unexpected behavior. Example '/subpath'. Defaults to '' (empty string).
|
|
258
262
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "54.0.
|
|
3
|
+
"version": "54.0.4",
|
|
4
4
|
"description": "Types for the Expo config object app.config.ts",
|
|
5
5
|
"types": "build/ExpoConfig.d.ts",
|
|
6
6
|
"main": "build/ExpoConfig.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^5.0.
|
|
40
|
+
"expo-module-scripts": "^5.0.3",
|
|
41
41
|
"json-schema-to-typescript": "^14.0.5"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "f2270a4447fa0939e0d6f95c92bf5238e7162a73"
|
|
47
47
|
}
|