@expo/config-types 49.0.0-alpha.1 → 49.0.0

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.
@@ -154,7 +154,7 @@ export interface ExpoConfig {
154
154
  silentLaunch?: boolean;
155
155
  };
156
156
  /**
157
- * **Custom Builds Only**. URL scheme(s) to link into your app. For example, if we set this to `'demo'`, then demo:// URLs would open your app when tapped.
157
+ * URL scheme(s) to link into your app. For example, if we set this to `'demo'`, then demo:// URLs would open your app when tapped. This is a build-time configuration, it has no effect in Expo Go.
158
158
  */
159
159
  scheme?: string | string[];
160
160
  /**
@@ -225,16 +225,6 @@ export interface ExpoConfig {
225
225
  [k: string]: any;
226
226
  };
227
227
  };
228
- /**
229
- * Is app detached
230
- */
231
- isDetached?: boolean;
232
- /**
233
- * Extra fields needed by detached apps
234
- */
235
- detach?: {
236
- [k: string]: any;
237
- };
238
228
  /**
239
229
  * An array of file glob strings which point to assets that will be bundled within your standalone app binary. Read more in the [Offline Support guide](https://docs.expo.dev/guides/offline-support/)
240
230
  */
@@ -266,6 +256,10 @@ export interface ExpoConfig {
266
256
  * Enable tsconfig/jsconfig `compilerOptions.paths` and `compilerOptions.baseUrl` support for import aliases in Metro.
267
257
  */
268
258
  tsconfigPaths?: boolean;
259
+ /**
260
+ * Enable support for statically typed links in Expo Router. This feature requires TypeScript be set up in your Expo Router v2 project.
261
+ */
262
+ typedRoutes?: boolean;
269
263
  /**
270
264
  * Enables Turbo Modules, which are a type of native modules that use a different way of communicating between JS and platform code. When installing a Turbo Module you will need to enable this experimental option (the library still needs to be a part of Expo SDK already, like react-native-reanimated v2). Turbo Modules do not support remote debugging and enabling this option will disable remote debugging.
271
265
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "49.0.0-alpha.1",
3
+ "version": "49.0.0",
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",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "b8be1f6c8dc273698908751db0555049866d899b"
45
+ "gitHead": "fa5ecca8251986b9f197cc14074eec0ab6dfb6db"
46
46
  }