@nuxt/schema-nightly 4.3.0-29436247.ecea7a86 → 4.3.0-29436286.4f0cb865
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -243,6 +243,11 @@ interface ModuleMeta {
|
|
|
243
243
|
* @internal
|
|
244
244
|
*/
|
|
245
245
|
rawPath?: string;
|
|
246
|
+
/**
|
|
247
|
+
* Whether the module has been disabled in the Nuxt configuration.
|
|
248
|
+
* @internal
|
|
249
|
+
*/
|
|
250
|
+
disabled?: boolean;
|
|
246
251
|
[key: string]: unknown;
|
|
247
252
|
}
|
|
248
253
|
/** The options received. */
|
package/dist/index.d.ts
CHANGED
|
@@ -243,6 +243,11 @@ interface ModuleMeta {
|
|
|
243
243
|
* @internal
|
|
244
244
|
*/
|
|
245
245
|
rawPath?: string;
|
|
246
|
+
/**
|
|
247
|
+
* Whether the module has been disabled in the Nuxt configuration.
|
|
248
|
+
* @internal
|
|
249
|
+
*/
|
|
250
|
+
disabled?: boolean;
|
|
246
251
|
[key: string]: unknown;
|
|
247
252
|
}
|
|
248
253
|
/** The options received. */
|