@nuxt/schema-nightly 4.2.0-29333792.e060b969 → 4.2.0-29333853.4751a6ac
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -91,6 +91,7 @@ interface Component {
|
|
|
91
91
|
kebabName: string;
|
|
92
92
|
export: string;
|
|
93
93
|
filePath: string;
|
|
94
|
+
shortPath: string;
|
|
94
95
|
chunkName: string;
|
|
95
96
|
prefetch: boolean;
|
|
96
97
|
preload: boolean;
|
|
@@ -2251,6 +2252,12 @@ interface ConfigSchema {
|
|
|
2251
2252
|
* Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
|
|
2252
2253
|
*/
|
|
2253
2254
|
entryImportMap: boolean;
|
|
2255
|
+
/**
|
|
2256
|
+
* Whether to enable `@dxup/nuxt` module for better TypeScript DX.
|
|
2257
|
+
*
|
|
2258
|
+
* @see https://github.com/KazariEX/dxup
|
|
2259
|
+
*/
|
|
2260
|
+
typescriptPlugin: boolean;
|
|
2254
2261
|
};
|
|
2255
2262
|
/**
|
|
2256
2263
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ interface Component {
|
|
|
91
91
|
kebabName: string;
|
|
92
92
|
export: string;
|
|
93
93
|
filePath: string;
|
|
94
|
+
shortPath: string;
|
|
94
95
|
chunkName: string;
|
|
95
96
|
prefetch: boolean;
|
|
96
97
|
preload: boolean;
|
|
@@ -2251,6 +2252,12 @@ interface ConfigSchema {
|
|
|
2251
2252
|
* Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
|
|
2252
2253
|
*/
|
|
2253
2254
|
entryImportMap: boolean;
|
|
2255
|
+
/**
|
|
2256
|
+
* Whether to enable `@dxup/nuxt` module for better TypeScript DX.
|
|
2257
|
+
*
|
|
2258
|
+
* @see https://github.com/KazariEX/dxup
|
|
2259
|
+
*/
|
|
2260
|
+
typescriptPlugin: boolean;
|
|
2254
2261
|
};
|
|
2255
2262
|
/**
|
|
2256
2263
|
*
|