@nuxt/schema-nightly 4.2.0-29334440.d083e066 → 4.2.0-29334960.22f4693a
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 +1 -6
- package/dist/index.d.ts +1 -6
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -155,11 +155,6 @@ interface ScanDir {
|
|
|
155
155
|
* This flag indicates, component should be loaded async (with a separate chunk) regardless of using Lazy prefix or not.
|
|
156
156
|
*/
|
|
157
157
|
isAsync?: boolean;
|
|
158
|
-
/**
|
|
159
|
-
* Path to component's declaration file
|
|
160
|
-
* Used for type generation when different from filePath
|
|
161
|
-
*/
|
|
162
|
-
declarationPath?: string;
|
|
163
158
|
extendComponent?: (component: Component) => Promise<Component | void> | (Component | void);
|
|
164
159
|
/**
|
|
165
160
|
* If enabled, registers components to be globally available.
|
|
@@ -1841,7 +1836,7 @@ interface ConfigSchema {
|
|
|
1841
1836
|
* Enable early access to future features or flags.
|
|
1842
1837
|
*
|
|
1843
1838
|
*/
|
|
1844
|
-
compatibilityVersion: 4;
|
|
1839
|
+
compatibilityVersion: 4 | 5;
|
|
1845
1840
|
/**
|
|
1846
1841
|
* This enables early access to the experimental multi-app support.
|
|
1847
1842
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -155,11 +155,6 @@ interface ScanDir {
|
|
|
155
155
|
* This flag indicates, component should be loaded async (with a separate chunk) regardless of using Lazy prefix or not.
|
|
156
156
|
*/
|
|
157
157
|
isAsync?: boolean;
|
|
158
|
-
/**
|
|
159
|
-
* Path to component's declaration file
|
|
160
|
-
* Used for type generation when different from filePath
|
|
161
|
-
*/
|
|
162
|
-
declarationPath?: string;
|
|
163
158
|
extendComponent?: (component: Component) => Promise<Component | void> | (Component | void);
|
|
164
159
|
/**
|
|
165
160
|
* If enabled, registers components to be globally available.
|
|
@@ -1841,7 +1836,7 @@ interface ConfigSchema {
|
|
|
1841
1836
|
* Enable early access to future features or flags.
|
|
1842
1837
|
*
|
|
1843
1838
|
*/
|
|
1844
|
-
compatibilityVersion: 4;
|
|
1839
|
+
compatibilityVersion: 4 | 5;
|
|
1845
1840
|
/**
|
|
1846
1841
|
* This enables early access to the experimental multi-app support.
|
|
1847
1842
|
*
|
package/dist/index.mjs
CHANGED
|
@@ -666,7 +666,7 @@ const experimental = defineResolvers({
|
|
|
666
666
|
future: {
|
|
667
667
|
compatibilityVersion: {
|
|
668
668
|
// force resolution to `4` no matter what users pass
|
|
669
|
-
$resolve: () => 4
|
|
669
|
+
$resolve: (val) => typeof val === "number" ? val : 4
|
|
670
670
|
},
|
|
671
671
|
multiApp: false,
|
|
672
672
|
typescriptBundlerResolution: {
|