@nuxt/schema-nightly 4.1.0-29272761.6c974f0b → 4.1.0-29272968.ece1216a

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/dist/index.d.mts CHANGED
@@ -2224,6 +2224,10 @@ interface ConfigSchema {
2224
2224
  * For `useAsyncData` and `useFetch`, whether `pending` should be `true` when data has not yet started to be fetched.
2225
2225
  */
2226
2226
  pendingWhenIdle: boolean;
2227
+ /**
2228
+ * Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
2229
+ */
2230
+ entryImportMap: boolean;
2227
2231
  };
2228
2232
  /**
2229
2233
  *
package/dist/index.d.ts CHANGED
@@ -2224,6 +2224,10 @@ interface ConfigSchema {
2224
2224
  * For `useAsyncData` and `useFetch`, whether `pending` should be `true` when data has not yet started to be fetched.
2225
2225
  */
2226
2226
  pendingWhenIdle: boolean;
2227
+ /**
2228
+ * Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
2229
+ */
2230
+ entryImportMap: boolean;
2227
2231
  };
2228
2232
  /**
2229
2233
  *
package/dist/index.mjs CHANGED
@@ -858,7 +858,8 @@ const experimental = defineResolvers({
858
858
  $resolve: (val) => {
859
859
  return typeof val === "boolean" ? val : false;
860
860
  }
861
- }
861
+ },
862
+ entryImportMap: true
862
863
  }
863
864
  });
864
865
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/schema-nightly",
3
- "version": "4.1.0-29272761.6c974f0b",
3
+ "version": "4.1.0-29272968.ece1216a",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",