@expo/config-types 56.0.1 → 56.0.2
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 -4
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -205,6 +205,10 @@ export interface ExpoConfig {
|
|
|
205
205
|
* Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.
|
|
206
206
|
*/
|
|
207
207
|
experiments?: {
|
|
208
|
+
/**
|
|
209
|
+
* Enables Expo's On-Demand Filesystem allowing Metro bundling outside of the watchFolders and with package manager global virtual stores.
|
|
210
|
+
*/
|
|
211
|
+
onDemandFilesystem?: boolean;
|
|
208
212
|
/**
|
|
209
213
|
* 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.
|
|
210
214
|
*/
|
|
@@ -226,10 +230,6 @@ export interface ExpoConfig {
|
|
|
226
230
|
* If true, indicates that this project does not support tablets or handsets, and only supports Apple TV and Android TV
|
|
227
231
|
*/
|
|
228
232
|
supportsTVOnly?: boolean;
|
|
229
|
-
/**
|
|
230
|
-
* Enable React-based CSS support for native platforms. Only supports a subset of CSS properties, class names selectors, and has no cascading.
|
|
231
|
-
*/
|
|
232
|
-
functionalCSS?: boolean;
|
|
233
233
|
/**
|
|
234
234
|
* Enable tsconfig/jsconfig `compilerOptions.paths` and `compilerOptions.baseUrl` support for import aliases in Metro.
|
|
235
235
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.2",
|
|
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",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"commander": "^12.1.0",
|
|
31
31
|
"json-schema-to-typescript": "^15.0.0",
|
|
32
32
|
"semver": "^7.7.4",
|
|
33
|
-
"expo-module-scripts": "56.0.
|
|
33
|
+
"expo-module-scripts": "56.0.2"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a30353e69ca0d72b9fac5830abc631feda1ba3ae",
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "expo-module tsc",
|
|
41
41
|
"clean": "expo-module clean",
|