@rspack/core 1.0.6 → 1.0.8
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/Compilation.d.ts +2 -4
- package/dist/Compilation.js +8 -8
- package/dist/Compiler.js +5 -2
- package/dist/RuntimeModule.d.ts +1 -1
- package/dist/RuntimeModule.js +2 -2
- package/dist/builtin-plugin/BannerPlugin.d.ts +29 -177
- package/dist/builtin-plugin/BannerPlugin.js +0 -23
- package/dist/builtin-plugin/HtmlRspackPlugin.d.ts +64 -110
- package/dist/builtin-plugin/IgnorePlugin.d.ts +3 -0
- package/dist/config/adapter.js +20 -4
- package/dist/config/browserslistTargetHandler.js +6 -5
- package/dist/config/defaults.js +11 -3
- package/dist/config/normalization.d.ts +2 -1
- package/dist/config/normalization.js +2 -1
- package/dist/config/zod.d.ts +164 -49
- package/dist/config/zod.js +11 -2
- package/dist/loader-runner/index.js +2 -1
- package/dist/util/hash/md4.d.ts +1 -19
- package/dist/util/hash/md4.js +12 -6
- package/dist/util/hash/wasm-hash.d.ts +1 -1
- package/dist/util/hash/wasm-hash.js +2 -1
- package/dist/util/hash/xxhash64.d.ts +1 -19
- package/dist/util/hash/xxhash64.js +12 -6
- package/package.json +3 -3
package/dist/config/zod.d.ts
CHANGED
|
@@ -2097,13 +2097,13 @@ declare const baseRuleSetRule: z.ZodObject<{
|
|
|
2097
2097
|
}, "strict", z.ZodTypeAny, {
|
|
2098
2098
|
options?: string | Record<string, any> | undefined;
|
|
2099
2099
|
type?: string | undefined;
|
|
2100
|
-
exclude?: RuleSetCondition | undefined;
|
|
2101
|
-
include?: RuleSetCondition | undefined;
|
|
2102
|
-
test?: RuleSetCondition | undefined;
|
|
2103
2100
|
layer?: string | undefined;
|
|
2101
|
+
test?: RuleSetCondition | undefined;
|
|
2104
2102
|
enforce?: "pre" | "post" | undefined;
|
|
2105
2103
|
sideEffects?: boolean | undefined;
|
|
2106
2104
|
loader?: string | undefined;
|
|
2105
|
+
exclude?: RuleSetCondition | undefined;
|
|
2106
|
+
include?: RuleSetCondition | undefined;
|
|
2107
2107
|
issuer?: RuleSetCondition | undefined;
|
|
2108
2108
|
issuerLayer?: RuleSetCondition | undefined;
|
|
2109
2109
|
dependency?: RuleSetCondition | undefined;
|
|
@@ -2133,13 +2133,13 @@ declare const baseRuleSetRule: z.ZodObject<{
|
|
|
2133
2133
|
}, {
|
|
2134
2134
|
options?: string | Record<string, any> | undefined;
|
|
2135
2135
|
type?: string | undefined;
|
|
2136
|
-
exclude?: RuleSetCondition | undefined;
|
|
2137
|
-
include?: RuleSetCondition | undefined;
|
|
2138
|
-
test?: RuleSetCondition | undefined;
|
|
2139
2136
|
layer?: string | undefined;
|
|
2137
|
+
test?: RuleSetCondition | undefined;
|
|
2140
2138
|
enforce?: "pre" | "post" | undefined;
|
|
2141
2139
|
sideEffects?: boolean | undefined;
|
|
2142
2140
|
loader?: string | undefined;
|
|
2141
|
+
exclude?: RuleSetCondition | undefined;
|
|
2142
|
+
include?: RuleSetCondition | undefined;
|
|
2143
2143
|
issuer?: RuleSetCondition | undefined;
|
|
2144
2144
|
issuerLayer?: RuleSetCondition | undefined;
|
|
2145
2145
|
dependency?: RuleSetCondition | undefined;
|
|
@@ -4935,7 +4935,6 @@ declare const statsOptions: z.ZodObject<{
|
|
|
4935
4935
|
}, "strict", z.ZodTypeAny, {
|
|
4936
4936
|
source?: boolean | undefined;
|
|
4937
4937
|
publicPath?: boolean | undefined;
|
|
4938
|
-
hash?: boolean | undefined;
|
|
4939
4938
|
all?: boolean | undefined;
|
|
4940
4939
|
chunks?: boolean | undefined;
|
|
4941
4940
|
usedExports?: boolean | undefined;
|
|
@@ -4950,6 +4949,7 @@ declare const statsOptions: z.ZodObject<{
|
|
|
4950
4949
|
errors?: boolean | undefined;
|
|
4951
4950
|
errorsCount?: boolean | undefined;
|
|
4952
4951
|
colors?: boolean | undefined;
|
|
4952
|
+
hash?: boolean | undefined;
|
|
4953
4953
|
version?: boolean | undefined;
|
|
4954
4954
|
reasons?: boolean | undefined;
|
|
4955
4955
|
outputPath?: boolean | undefined;
|
|
@@ -5012,7 +5012,6 @@ declare const statsOptions: z.ZodObject<{
|
|
|
5012
5012
|
}, {
|
|
5013
5013
|
source?: boolean | undefined;
|
|
5014
5014
|
publicPath?: boolean | undefined;
|
|
5015
|
-
hash?: boolean | undefined;
|
|
5016
5015
|
all?: boolean | undefined;
|
|
5017
5016
|
chunks?: boolean | undefined;
|
|
5018
5017
|
usedExports?: boolean | undefined;
|
|
@@ -5027,6 +5026,7 @@ declare const statsOptions: z.ZodObject<{
|
|
|
5027
5026
|
errors?: boolean | undefined;
|
|
5028
5027
|
errorsCount?: boolean | undefined;
|
|
5029
5028
|
colors?: boolean | undefined;
|
|
5029
|
+
hash?: boolean | undefined;
|
|
5030
5030
|
version?: boolean | undefined;
|
|
5031
5031
|
reasons?: boolean | undefined;
|
|
5032
5032
|
outputPath?: boolean | undefined;
|
|
@@ -5168,7 +5168,6 @@ declare const statsValue: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["norm
|
|
|
5168
5168
|
}, "strict", z.ZodTypeAny, {
|
|
5169
5169
|
source?: boolean | undefined;
|
|
5170
5170
|
publicPath?: boolean | undefined;
|
|
5171
|
-
hash?: boolean | undefined;
|
|
5172
5171
|
all?: boolean | undefined;
|
|
5173
5172
|
chunks?: boolean | undefined;
|
|
5174
5173
|
usedExports?: boolean | undefined;
|
|
@@ -5183,6 +5182,7 @@ declare const statsValue: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["norm
|
|
|
5183
5182
|
errors?: boolean | undefined;
|
|
5184
5183
|
errorsCount?: boolean | undefined;
|
|
5185
5184
|
colors?: boolean | undefined;
|
|
5185
|
+
hash?: boolean | undefined;
|
|
5186
5186
|
version?: boolean | undefined;
|
|
5187
5187
|
reasons?: boolean | undefined;
|
|
5188
5188
|
outputPath?: boolean | undefined;
|
|
@@ -5245,7 +5245,6 @@ declare const statsValue: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["norm
|
|
|
5245
5245
|
}, {
|
|
5246
5246
|
source?: boolean | undefined;
|
|
5247
5247
|
publicPath?: boolean | undefined;
|
|
5248
|
-
hash?: boolean | undefined;
|
|
5249
5248
|
all?: boolean | undefined;
|
|
5250
5249
|
chunks?: boolean | undefined;
|
|
5251
5250
|
usedExports?: boolean | undefined;
|
|
@@ -5260,6 +5259,7 @@ declare const statsValue: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["norm
|
|
|
5260
5259
|
errors?: boolean | undefined;
|
|
5261
5260
|
errorsCount?: boolean | undefined;
|
|
5262
5261
|
colors?: boolean | undefined;
|
|
5262
|
+
hash?: boolean | undefined;
|
|
5263
5263
|
version?: boolean | undefined;
|
|
5264
5264
|
reasons?: boolean | undefined;
|
|
5265
5265
|
outputPath?: boolean | undefined;
|
|
@@ -5377,9 +5377,9 @@ declare const optimizationSplitChunksCacheGroup: z.ZodObject<{
|
|
|
5377
5377
|
}, "strict", z.ZodTypeAny, {
|
|
5378
5378
|
filename?: string | undefined;
|
|
5379
5379
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5380
|
+
priority?: number | undefined;
|
|
5380
5381
|
type?: string | RegExp | undefined;
|
|
5381
5382
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5382
|
-
priority?: number | undefined;
|
|
5383
5383
|
enforce?: boolean | undefined;
|
|
5384
5384
|
reuseExistingChunk?: boolean | undefined;
|
|
5385
5385
|
idHint?: string | undefined;
|
|
@@ -5397,9 +5397,9 @@ declare const optimizationSplitChunksCacheGroup: z.ZodObject<{
|
|
|
5397
5397
|
}, {
|
|
5398
5398
|
filename?: string | undefined;
|
|
5399
5399
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5400
|
+
priority?: number | undefined;
|
|
5400
5401
|
type?: string | RegExp | undefined;
|
|
5401
5402
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5402
|
-
priority?: number | undefined;
|
|
5403
5403
|
enforce?: boolean | undefined;
|
|
5404
5404
|
reuseExistingChunk?: boolean | undefined;
|
|
5405
5405
|
idHint?: string | undefined;
|
|
@@ -5452,9 +5452,9 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
5452
5452
|
}, "strict", z.ZodTypeAny, {
|
|
5453
5453
|
filename?: string | undefined;
|
|
5454
5454
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5455
|
+
priority?: number | undefined;
|
|
5455
5456
|
type?: string | RegExp | undefined;
|
|
5456
5457
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5457
|
-
priority?: number | undefined;
|
|
5458
5458
|
enforce?: boolean | undefined;
|
|
5459
5459
|
reuseExistingChunk?: boolean | undefined;
|
|
5460
5460
|
idHint?: string | undefined;
|
|
@@ -5472,9 +5472,9 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
5472
5472
|
}, {
|
|
5473
5473
|
filename?: string | undefined;
|
|
5474
5474
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5475
|
+
priority?: number | undefined;
|
|
5475
5476
|
type?: string | RegExp | undefined;
|
|
5476
5477
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5477
|
-
priority?: number | undefined;
|
|
5478
5478
|
enforce?: boolean | undefined;
|
|
5479
5479
|
reuseExistingChunk?: boolean | undefined;
|
|
5480
5480
|
idHint?: string | undefined;
|
|
@@ -5529,9 +5529,9 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
5529
5529
|
cacheGroups?: Record<string, false | {
|
|
5530
5530
|
filename?: string | undefined;
|
|
5531
5531
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5532
|
+
priority?: number | undefined;
|
|
5532
5533
|
type?: string | RegExp | undefined;
|
|
5533
5534
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5534
|
-
priority?: number | undefined;
|
|
5535
5535
|
enforce?: boolean | undefined;
|
|
5536
5536
|
reuseExistingChunk?: boolean | undefined;
|
|
5537
5537
|
idHint?: string | undefined;
|
|
@@ -5572,9 +5572,9 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
5572
5572
|
cacheGroups?: Record<string, false | {
|
|
5573
5573
|
filename?: string | undefined;
|
|
5574
5574
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5575
|
+
priority?: number | undefined;
|
|
5575
5576
|
type?: string | RegExp | undefined;
|
|
5576
5577
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5577
|
-
priority?: number | undefined;
|
|
5578
5578
|
enforce?: boolean | undefined;
|
|
5579
5579
|
reuseExistingChunk?: boolean | undefined;
|
|
5580
5580
|
idHint?: string | undefined;
|
|
@@ -5643,9 +5643,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5643
5643
|
}, "strict", z.ZodTypeAny, {
|
|
5644
5644
|
filename?: string | undefined;
|
|
5645
5645
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5646
|
+
priority?: number | undefined;
|
|
5646
5647
|
type?: string | RegExp | undefined;
|
|
5647
5648
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5648
|
-
priority?: number | undefined;
|
|
5649
5649
|
enforce?: boolean | undefined;
|
|
5650
5650
|
reuseExistingChunk?: boolean | undefined;
|
|
5651
5651
|
idHint?: string | undefined;
|
|
@@ -5663,9 +5663,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5663
5663
|
}, {
|
|
5664
5664
|
filename?: string | undefined;
|
|
5665
5665
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5666
|
+
priority?: number | undefined;
|
|
5666
5667
|
type?: string | RegExp | undefined;
|
|
5667
5668
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5668
|
-
priority?: number | undefined;
|
|
5669
5669
|
enforce?: boolean | undefined;
|
|
5670
5670
|
reuseExistingChunk?: boolean | undefined;
|
|
5671
5671
|
idHint?: string | undefined;
|
|
@@ -5720,9 +5720,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5720
5720
|
cacheGroups?: Record<string, false | {
|
|
5721
5721
|
filename?: string | undefined;
|
|
5722
5722
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5723
|
+
priority?: number | undefined;
|
|
5723
5724
|
type?: string | RegExp | undefined;
|
|
5724
5725
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5725
|
-
priority?: number | undefined;
|
|
5726
5726
|
enforce?: boolean | undefined;
|
|
5727
5727
|
reuseExistingChunk?: boolean | undefined;
|
|
5728
5728
|
idHint?: string | undefined;
|
|
@@ -5763,9 +5763,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5763
5763
|
cacheGroups?: Record<string, false | {
|
|
5764
5764
|
filename?: string | undefined;
|
|
5765
5765
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5766
|
+
priority?: number | undefined;
|
|
5766
5767
|
type?: string | RegExp | undefined;
|
|
5767
5768
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5768
|
-
priority?: number | undefined;
|
|
5769
5769
|
enforce?: boolean | undefined;
|
|
5770
5770
|
reuseExistingChunk?: boolean | undefined;
|
|
5771
5771
|
idHint?: string | undefined;
|
|
@@ -5842,9 +5842,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5842
5842
|
cacheGroups?: Record<string, false | {
|
|
5843
5843
|
filename?: string | undefined;
|
|
5844
5844
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5845
|
+
priority?: number | undefined;
|
|
5845
5846
|
type?: string | RegExp | undefined;
|
|
5846
5847
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5847
|
-
priority?: number | undefined;
|
|
5848
5848
|
enforce?: boolean | undefined;
|
|
5849
5849
|
reuseExistingChunk?: boolean | undefined;
|
|
5850
5850
|
idHint?: string | undefined;
|
|
@@ -5908,9 +5908,9 @@ declare const optimization: z.ZodObject<{
|
|
|
5908
5908
|
cacheGroups?: Record<string, false | {
|
|
5909
5909
|
filename?: string | undefined;
|
|
5910
5910
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5911
|
+
priority?: number | undefined;
|
|
5911
5912
|
type?: string | RegExp | undefined;
|
|
5912
5913
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5913
|
-
priority?: number | undefined;
|
|
5914
5914
|
enforce?: boolean | undefined;
|
|
5915
5915
|
reuseExistingChunk?: boolean | undefined;
|
|
5916
5916
|
idHint?: string | undefined;
|
|
@@ -5967,21 +5967,18 @@ declare const rspackFutureOptions: z.ZodObject<{
|
|
|
5967
5967
|
version?: string | undefined;
|
|
5968
5968
|
bundler?: string | undefined;
|
|
5969
5969
|
}>>;
|
|
5970
|
-
newIncremental: z.ZodOptional<z.ZodBoolean>;
|
|
5971
5970
|
}, "strict", z.ZodTypeAny, {
|
|
5972
5971
|
bundlerInfo?: {
|
|
5973
5972
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
5974
5973
|
version?: string | undefined;
|
|
5975
5974
|
bundler?: string | undefined;
|
|
5976
5975
|
} | undefined;
|
|
5977
|
-
newIncremental?: boolean | undefined;
|
|
5978
5976
|
}, {
|
|
5979
5977
|
bundlerInfo?: {
|
|
5980
5978
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
5981
5979
|
version?: string | undefined;
|
|
5982
5980
|
bundler?: string | undefined;
|
|
5983
5981
|
} | undefined;
|
|
5984
|
-
newIncremental?: boolean | undefined;
|
|
5985
5982
|
}>;
|
|
5986
5983
|
export type RspackFutureOptions = z.infer<typeof rspackFutureOptions>;
|
|
5987
5984
|
declare const lazyCompilationOptions: z.ZodObject<{
|
|
@@ -6084,6 +6081,32 @@ declare const lazyCompilationOptions: z.ZodObject<{
|
|
|
6084
6081
|
imports?: boolean | undefined;
|
|
6085
6082
|
}>;
|
|
6086
6083
|
export type LazyCompilationOptions = z.infer<typeof lazyCompilationOptions>;
|
|
6084
|
+
declare const incremental: z.ZodObject<{
|
|
6085
|
+
make: z.ZodOptional<z.ZodBoolean>;
|
|
6086
|
+
emitAssets: z.ZodOptional<z.ZodBoolean>;
|
|
6087
|
+
inferAsyncModules: z.ZodOptional<z.ZodBoolean>;
|
|
6088
|
+
providedExports: z.ZodOptional<z.ZodBoolean>;
|
|
6089
|
+
moduleHashes: z.ZodOptional<z.ZodBoolean>;
|
|
6090
|
+
moduleCodegen: z.ZodOptional<z.ZodBoolean>;
|
|
6091
|
+
moduleRuntimeRequirements: z.ZodOptional<z.ZodBoolean>;
|
|
6092
|
+
}, "strict", z.ZodTypeAny, {
|
|
6093
|
+
make?: boolean | undefined;
|
|
6094
|
+
providedExports?: boolean | undefined;
|
|
6095
|
+
emitAssets?: boolean | undefined;
|
|
6096
|
+
inferAsyncModules?: boolean | undefined;
|
|
6097
|
+
moduleHashes?: boolean | undefined;
|
|
6098
|
+
moduleCodegen?: boolean | undefined;
|
|
6099
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6100
|
+
}, {
|
|
6101
|
+
make?: boolean | undefined;
|
|
6102
|
+
providedExports?: boolean | undefined;
|
|
6103
|
+
emitAssets?: boolean | undefined;
|
|
6104
|
+
inferAsyncModules?: boolean | undefined;
|
|
6105
|
+
moduleHashes?: boolean | undefined;
|
|
6106
|
+
moduleCodegen?: boolean | undefined;
|
|
6107
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6108
|
+
}>;
|
|
6109
|
+
export type Incremental = z.infer<typeof incremental>;
|
|
6087
6110
|
declare const experiments: z.ZodObject<{
|
|
6088
6111
|
lazyCompilation: z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
6089
6112
|
backend: z.ZodOptional<z.ZodObject<{
|
|
@@ -6189,6 +6212,31 @@ declare const experiments: z.ZodObject<{
|
|
|
6189
6212
|
topLevelAwait: z.ZodOptional<z.ZodBoolean>;
|
|
6190
6213
|
css: z.ZodOptional<z.ZodBoolean>;
|
|
6191
6214
|
layers: z.ZodOptional<z.ZodBoolean>;
|
|
6215
|
+
incremental: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
6216
|
+
make: z.ZodOptional<z.ZodBoolean>;
|
|
6217
|
+
emitAssets: z.ZodOptional<z.ZodBoolean>;
|
|
6218
|
+
inferAsyncModules: z.ZodOptional<z.ZodBoolean>;
|
|
6219
|
+
providedExports: z.ZodOptional<z.ZodBoolean>;
|
|
6220
|
+
moduleHashes: z.ZodOptional<z.ZodBoolean>;
|
|
6221
|
+
moduleCodegen: z.ZodOptional<z.ZodBoolean>;
|
|
6222
|
+
moduleRuntimeRequirements: z.ZodOptional<z.ZodBoolean>;
|
|
6223
|
+
}, "strict", z.ZodTypeAny, {
|
|
6224
|
+
make?: boolean | undefined;
|
|
6225
|
+
providedExports?: boolean | undefined;
|
|
6226
|
+
emitAssets?: boolean | undefined;
|
|
6227
|
+
inferAsyncModules?: boolean | undefined;
|
|
6228
|
+
moduleHashes?: boolean | undefined;
|
|
6229
|
+
moduleCodegen?: boolean | undefined;
|
|
6230
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6231
|
+
}, {
|
|
6232
|
+
make?: boolean | undefined;
|
|
6233
|
+
providedExports?: boolean | undefined;
|
|
6234
|
+
emitAssets?: boolean | undefined;
|
|
6235
|
+
inferAsyncModules?: boolean | undefined;
|
|
6236
|
+
moduleHashes?: boolean | undefined;
|
|
6237
|
+
moduleCodegen?: boolean | undefined;
|
|
6238
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6239
|
+
}>]>>;
|
|
6192
6240
|
futureDefaults: z.ZodOptional<z.ZodBoolean>;
|
|
6193
6241
|
rspackFuture: z.ZodOptional<z.ZodObject<{
|
|
6194
6242
|
bundlerInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -6204,21 +6252,18 @@ declare const experiments: z.ZodObject<{
|
|
|
6204
6252
|
version?: string | undefined;
|
|
6205
6253
|
bundler?: string | undefined;
|
|
6206
6254
|
}>>;
|
|
6207
|
-
newIncremental: z.ZodOptional<z.ZodBoolean>;
|
|
6208
6255
|
}, "strict", z.ZodTypeAny, {
|
|
6209
6256
|
bundlerInfo?: {
|
|
6210
6257
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
6211
6258
|
version?: string | undefined;
|
|
6212
6259
|
bundler?: string | undefined;
|
|
6213
6260
|
} | undefined;
|
|
6214
|
-
newIncremental?: boolean | undefined;
|
|
6215
6261
|
}, {
|
|
6216
6262
|
bundlerInfo?: {
|
|
6217
6263
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
6218
6264
|
version?: string | undefined;
|
|
6219
6265
|
bundler?: string | undefined;
|
|
6220
6266
|
} | undefined;
|
|
6221
|
-
newIncremental?: boolean | undefined;
|
|
6222
6267
|
}>>;
|
|
6223
6268
|
}, "strict", z.ZodTypeAny, {
|
|
6224
6269
|
css?: boolean | undefined;
|
|
@@ -6245,6 +6290,15 @@ declare const experiments: z.ZodObject<{
|
|
|
6245
6290
|
outputModule?: boolean | undefined;
|
|
6246
6291
|
topLevelAwait?: boolean | undefined;
|
|
6247
6292
|
layers?: boolean | undefined;
|
|
6293
|
+
incremental?: boolean | {
|
|
6294
|
+
make?: boolean | undefined;
|
|
6295
|
+
providedExports?: boolean | undefined;
|
|
6296
|
+
emitAssets?: boolean | undefined;
|
|
6297
|
+
inferAsyncModules?: boolean | undefined;
|
|
6298
|
+
moduleHashes?: boolean | undefined;
|
|
6299
|
+
moduleCodegen?: boolean | undefined;
|
|
6300
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6301
|
+
} | undefined;
|
|
6248
6302
|
futureDefaults?: boolean | undefined;
|
|
6249
6303
|
rspackFuture?: {
|
|
6250
6304
|
bundlerInfo?: {
|
|
@@ -6252,7 +6306,6 @@ declare const experiments: z.ZodObject<{
|
|
|
6252
6306
|
version?: string | undefined;
|
|
6253
6307
|
bundler?: string | undefined;
|
|
6254
6308
|
} | undefined;
|
|
6255
|
-
newIncremental?: boolean | undefined;
|
|
6256
6309
|
} | undefined;
|
|
6257
6310
|
}, {
|
|
6258
6311
|
css?: boolean | undefined;
|
|
@@ -6279,6 +6332,15 @@ declare const experiments: z.ZodObject<{
|
|
|
6279
6332
|
outputModule?: boolean | undefined;
|
|
6280
6333
|
topLevelAwait?: boolean | undefined;
|
|
6281
6334
|
layers?: boolean | undefined;
|
|
6335
|
+
incremental?: boolean | {
|
|
6336
|
+
make?: boolean | undefined;
|
|
6337
|
+
providedExports?: boolean | undefined;
|
|
6338
|
+
emitAssets?: boolean | undefined;
|
|
6339
|
+
inferAsyncModules?: boolean | undefined;
|
|
6340
|
+
moduleHashes?: boolean | undefined;
|
|
6341
|
+
moduleCodegen?: boolean | undefined;
|
|
6342
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
6343
|
+
} | undefined;
|
|
6282
6344
|
futureDefaults?: boolean | undefined;
|
|
6283
6345
|
rspackFuture?: {
|
|
6284
6346
|
bundlerInfo?: {
|
|
@@ -6286,7 +6348,6 @@ declare const experiments: z.ZodObject<{
|
|
|
6286
6348
|
version?: string | undefined;
|
|
6287
6349
|
bundler?: string | undefined;
|
|
6288
6350
|
} | undefined;
|
|
6289
|
-
newIncremental?: boolean | undefined;
|
|
6290
6351
|
} | undefined;
|
|
6291
6352
|
}>;
|
|
6292
6353
|
export type Experiments = z.infer<typeof experiments>;
|
|
@@ -7238,6 +7299,31 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7238
7299
|
topLevelAwait: z.ZodOptional<z.ZodBoolean>;
|
|
7239
7300
|
css: z.ZodOptional<z.ZodBoolean>;
|
|
7240
7301
|
layers: z.ZodOptional<z.ZodBoolean>;
|
|
7302
|
+
incremental: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
7303
|
+
make: z.ZodOptional<z.ZodBoolean>;
|
|
7304
|
+
emitAssets: z.ZodOptional<z.ZodBoolean>;
|
|
7305
|
+
inferAsyncModules: z.ZodOptional<z.ZodBoolean>;
|
|
7306
|
+
providedExports: z.ZodOptional<z.ZodBoolean>;
|
|
7307
|
+
moduleHashes: z.ZodOptional<z.ZodBoolean>;
|
|
7308
|
+
moduleCodegen: z.ZodOptional<z.ZodBoolean>;
|
|
7309
|
+
moduleRuntimeRequirements: z.ZodOptional<z.ZodBoolean>;
|
|
7310
|
+
}, "strict", z.ZodTypeAny, {
|
|
7311
|
+
make?: boolean | undefined;
|
|
7312
|
+
providedExports?: boolean | undefined;
|
|
7313
|
+
emitAssets?: boolean | undefined;
|
|
7314
|
+
inferAsyncModules?: boolean | undefined;
|
|
7315
|
+
moduleHashes?: boolean | undefined;
|
|
7316
|
+
moduleCodegen?: boolean | undefined;
|
|
7317
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
7318
|
+
}, {
|
|
7319
|
+
make?: boolean | undefined;
|
|
7320
|
+
providedExports?: boolean | undefined;
|
|
7321
|
+
emitAssets?: boolean | undefined;
|
|
7322
|
+
inferAsyncModules?: boolean | undefined;
|
|
7323
|
+
moduleHashes?: boolean | undefined;
|
|
7324
|
+
moduleCodegen?: boolean | undefined;
|
|
7325
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
7326
|
+
}>]>>;
|
|
7241
7327
|
futureDefaults: z.ZodOptional<z.ZodBoolean>;
|
|
7242
7328
|
rspackFuture: z.ZodOptional<z.ZodObject<{
|
|
7243
7329
|
bundlerInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -7253,21 +7339,18 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7253
7339
|
version?: string | undefined;
|
|
7254
7340
|
bundler?: string | undefined;
|
|
7255
7341
|
}>>;
|
|
7256
|
-
newIncremental: z.ZodOptional<z.ZodBoolean>;
|
|
7257
7342
|
}, "strict", z.ZodTypeAny, {
|
|
7258
7343
|
bundlerInfo?: {
|
|
7259
7344
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
7260
7345
|
version?: string | undefined;
|
|
7261
7346
|
bundler?: string | undefined;
|
|
7262
7347
|
} | undefined;
|
|
7263
|
-
newIncremental?: boolean | undefined;
|
|
7264
7348
|
}, {
|
|
7265
7349
|
bundlerInfo?: {
|
|
7266
7350
|
force?: boolean | ("version" | "uniqueId")[] | undefined;
|
|
7267
7351
|
version?: string | undefined;
|
|
7268
7352
|
bundler?: string | undefined;
|
|
7269
7353
|
} | undefined;
|
|
7270
|
-
newIncremental?: boolean | undefined;
|
|
7271
7354
|
}>>;
|
|
7272
7355
|
}, "strict", z.ZodTypeAny, {
|
|
7273
7356
|
css?: boolean | undefined;
|
|
@@ -7294,6 +7377,15 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7294
7377
|
outputModule?: boolean | undefined;
|
|
7295
7378
|
topLevelAwait?: boolean | undefined;
|
|
7296
7379
|
layers?: boolean | undefined;
|
|
7380
|
+
incremental?: boolean | {
|
|
7381
|
+
make?: boolean | undefined;
|
|
7382
|
+
providedExports?: boolean | undefined;
|
|
7383
|
+
emitAssets?: boolean | undefined;
|
|
7384
|
+
inferAsyncModules?: boolean | undefined;
|
|
7385
|
+
moduleHashes?: boolean | undefined;
|
|
7386
|
+
moduleCodegen?: boolean | undefined;
|
|
7387
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
7388
|
+
} | undefined;
|
|
7297
7389
|
futureDefaults?: boolean | undefined;
|
|
7298
7390
|
rspackFuture?: {
|
|
7299
7391
|
bundlerInfo?: {
|
|
@@ -7301,7 +7393,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7301
7393
|
version?: string | undefined;
|
|
7302
7394
|
bundler?: string | undefined;
|
|
7303
7395
|
} | undefined;
|
|
7304
|
-
newIncremental?: boolean | undefined;
|
|
7305
7396
|
} | undefined;
|
|
7306
7397
|
}, {
|
|
7307
7398
|
css?: boolean | undefined;
|
|
@@ -7328,6 +7419,15 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7328
7419
|
outputModule?: boolean | undefined;
|
|
7329
7420
|
topLevelAwait?: boolean | undefined;
|
|
7330
7421
|
layers?: boolean | undefined;
|
|
7422
|
+
incremental?: boolean | {
|
|
7423
|
+
make?: boolean | undefined;
|
|
7424
|
+
providedExports?: boolean | undefined;
|
|
7425
|
+
emitAssets?: boolean | undefined;
|
|
7426
|
+
inferAsyncModules?: boolean | undefined;
|
|
7427
|
+
moduleHashes?: boolean | undefined;
|
|
7428
|
+
moduleCodegen?: boolean | undefined;
|
|
7429
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
7430
|
+
} | undefined;
|
|
7331
7431
|
futureDefaults?: boolean | undefined;
|
|
7332
7432
|
rspackFuture?: {
|
|
7333
7433
|
bundlerInfo?: {
|
|
@@ -7335,7 +7435,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7335
7435
|
version?: string | undefined;
|
|
7336
7436
|
bundler?: string | undefined;
|
|
7337
7437
|
} | undefined;
|
|
7338
|
-
newIncremental?: boolean | undefined;
|
|
7339
7438
|
} | undefined;
|
|
7340
7439
|
}>>;
|
|
7341
7440
|
externals: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>]>>]>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
@@ -7608,7 +7707,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7608
7707
|
}, "strict", z.ZodTypeAny, {
|
|
7609
7708
|
source?: boolean | undefined;
|
|
7610
7709
|
publicPath?: boolean | undefined;
|
|
7611
|
-
hash?: boolean | undefined;
|
|
7612
7710
|
all?: boolean | undefined;
|
|
7613
7711
|
chunks?: boolean | undefined;
|
|
7614
7712
|
usedExports?: boolean | undefined;
|
|
@@ -7623,6 +7721,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7623
7721
|
errors?: boolean | undefined;
|
|
7624
7722
|
errorsCount?: boolean | undefined;
|
|
7625
7723
|
colors?: boolean | undefined;
|
|
7724
|
+
hash?: boolean | undefined;
|
|
7626
7725
|
version?: boolean | undefined;
|
|
7627
7726
|
reasons?: boolean | undefined;
|
|
7628
7727
|
outputPath?: boolean | undefined;
|
|
@@ -7685,7 +7784,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7685
7784
|
}, {
|
|
7686
7785
|
source?: boolean | undefined;
|
|
7687
7786
|
publicPath?: boolean | undefined;
|
|
7688
|
-
hash?: boolean | undefined;
|
|
7689
7787
|
all?: boolean | undefined;
|
|
7690
7788
|
chunks?: boolean | undefined;
|
|
7691
7789
|
usedExports?: boolean | undefined;
|
|
@@ -7700,6 +7798,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7700
7798
|
errors?: boolean | undefined;
|
|
7701
7799
|
errorsCount?: boolean | undefined;
|
|
7702
7800
|
colors?: boolean | undefined;
|
|
7801
|
+
hash?: boolean | undefined;
|
|
7703
7802
|
version?: boolean | undefined;
|
|
7704
7803
|
reasons?: boolean | undefined;
|
|
7705
7804
|
outputPath?: boolean | undefined;
|
|
@@ -7803,9 +7902,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7803
7902
|
}, "strict", z.ZodTypeAny, {
|
|
7804
7903
|
filename?: string | undefined;
|
|
7805
7904
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
7905
|
+
priority?: number | undefined;
|
|
7806
7906
|
type?: string | RegExp | undefined;
|
|
7807
7907
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
7808
|
-
priority?: number | undefined;
|
|
7809
7908
|
enforce?: boolean | undefined;
|
|
7810
7909
|
reuseExistingChunk?: boolean | undefined;
|
|
7811
7910
|
idHint?: string | undefined;
|
|
@@ -7823,9 +7922,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7823
7922
|
}, {
|
|
7824
7923
|
filename?: string | undefined;
|
|
7825
7924
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
7925
|
+
priority?: number | undefined;
|
|
7826
7926
|
type?: string | RegExp | undefined;
|
|
7827
7927
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
7828
|
-
priority?: number | undefined;
|
|
7829
7928
|
enforce?: boolean | undefined;
|
|
7830
7929
|
reuseExistingChunk?: boolean | undefined;
|
|
7831
7930
|
idHint?: string | undefined;
|
|
@@ -7880,9 +7979,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7880
7979
|
cacheGroups?: Record<string, false | {
|
|
7881
7980
|
filename?: string | undefined;
|
|
7882
7981
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
7982
|
+
priority?: number | undefined;
|
|
7883
7983
|
type?: string | RegExp | undefined;
|
|
7884
7984
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
7885
|
-
priority?: number | undefined;
|
|
7886
7985
|
enforce?: boolean | undefined;
|
|
7887
7986
|
reuseExistingChunk?: boolean | undefined;
|
|
7888
7987
|
idHint?: string | undefined;
|
|
@@ -7923,9 +8022,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7923
8022
|
cacheGroups?: Record<string, false | {
|
|
7924
8023
|
filename?: string | undefined;
|
|
7925
8024
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
8025
|
+
priority?: number | undefined;
|
|
7926
8026
|
type?: string | RegExp | undefined;
|
|
7927
8027
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
7928
|
-
priority?: number | undefined;
|
|
7929
8028
|
enforce?: boolean | undefined;
|
|
7930
8029
|
reuseExistingChunk?: boolean | undefined;
|
|
7931
8030
|
idHint?: string | undefined;
|
|
@@ -8002,9 +8101,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8002
8101
|
cacheGroups?: Record<string, false | {
|
|
8003
8102
|
filename?: string | undefined;
|
|
8004
8103
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
8104
|
+
priority?: number | undefined;
|
|
8005
8105
|
type?: string | RegExp | undefined;
|
|
8006
8106
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
8007
|
-
priority?: number | undefined;
|
|
8008
8107
|
enforce?: boolean | undefined;
|
|
8009
8108
|
reuseExistingChunk?: boolean | undefined;
|
|
8010
8109
|
idHint?: string | undefined;
|
|
@@ -8068,9 +8167,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8068
8167
|
cacheGroups?: Record<string, false | {
|
|
8069
8168
|
filename?: string | undefined;
|
|
8070
8169
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
8170
|
+
priority?: number | undefined;
|
|
8071
8171
|
type?: string | RegExp | undefined;
|
|
8072
8172
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
8073
|
-
priority?: number | undefined;
|
|
8074
8173
|
enforce?: boolean | undefined;
|
|
8075
8174
|
reuseExistingChunk?: boolean | undefined;
|
|
8076
8175
|
idHint?: string | undefined;
|
|
@@ -9360,6 +9459,15 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9360
9459
|
outputModule?: boolean | undefined;
|
|
9361
9460
|
topLevelAwait?: boolean | undefined;
|
|
9362
9461
|
layers?: boolean | undefined;
|
|
9462
|
+
incremental?: boolean | {
|
|
9463
|
+
make?: boolean | undefined;
|
|
9464
|
+
providedExports?: boolean | undefined;
|
|
9465
|
+
emitAssets?: boolean | undefined;
|
|
9466
|
+
inferAsyncModules?: boolean | undefined;
|
|
9467
|
+
moduleHashes?: boolean | undefined;
|
|
9468
|
+
moduleCodegen?: boolean | undefined;
|
|
9469
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
9470
|
+
} | undefined;
|
|
9363
9471
|
futureDefaults?: boolean | undefined;
|
|
9364
9472
|
rspackFuture?: {
|
|
9365
9473
|
bundlerInfo?: {
|
|
@@ -9367,7 +9475,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9367
9475
|
version?: string | undefined;
|
|
9368
9476
|
bundler?: string | undefined;
|
|
9369
9477
|
} | undefined;
|
|
9370
|
-
newIncremental?: boolean | undefined;
|
|
9371
9478
|
} | undefined;
|
|
9372
9479
|
} | undefined;
|
|
9373
9480
|
externals?: string | RegExp | Record<string, string | boolean | string[] | Record<string, string | string[]>> | ((args_0: {
|
|
@@ -9431,7 +9538,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9431
9538
|
stats?: boolean | "verbose" | "normal" | "none" | "errors-only" | "errors-warnings" | "minimal" | "detailed" | "summary" | {
|
|
9432
9539
|
source?: boolean | undefined;
|
|
9433
9540
|
publicPath?: boolean | undefined;
|
|
9434
|
-
hash?: boolean | undefined;
|
|
9435
9541
|
all?: boolean | undefined;
|
|
9436
9542
|
chunks?: boolean | undefined;
|
|
9437
9543
|
usedExports?: boolean | undefined;
|
|
@@ -9446,6 +9552,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9446
9552
|
errors?: boolean | undefined;
|
|
9447
9553
|
errorsCount?: boolean | undefined;
|
|
9448
9554
|
colors?: boolean | undefined;
|
|
9555
|
+
hash?: boolean | undefined;
|
|
9449
9556
|
version?: boolean | undefined;
|
|
9450
9557
|
reasons?: boolean | undefined;
|
|
9451
9558
|
outputPath?: boolean | undefined;
|
|
@@ -9530,9 +9637,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9530
9637
|
cacheGroups?: Record<string, false | {
|
|
9531
9638
|
filename?: string | undefined;
|
|
9532
9639
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
9640
|
+
priority?: number | undefined;
|
|
9533
9641
|
type?: string | RegExp | undefined;
|
|
9534
9642
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
9535
|
-
priority?: number | undefined;
|
|
9536
9643
|
enforce?: boolean | undefined;
|
|
9537
9644
|
reuseExistingChunk?: boolean | undefined;
|
|
9538
9645
|
idHint?: string | undefined;
|
|
@@ -9934,6 +10041,15 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9934
10041
|
outputModule?: boolean | undefined;
|
|
9935
10042
|
topLevelAwait?: boolean | undefined;
|
|
9936
10043
|
layers?: boolean | undefined;
|
|
10044
|
+
incremental?: boolean | {
|
|
10045
|
+
make?: boolean | undefined;
|
|
10046
|
+
providedExports?: boolean | undefined;
|
|
10047
|
+
emitAssets?: boolean | undefined;
|
|
10048
|
+
inferAsyncModules?: boolean | undefined;
|
|
10049
|
+
moduleHashes?: boolean | undefined;
|
|
10050
|
+
moduleCodegen?: boolean | undefined;
|
|
10051
|
+
moduleRuntimeRequirements?: boolean | undefined;
|
|
10052
|
+
} | undefined;
|
|
9937
10053
|
futureDefaults?: boolean | undefined;
|
|
9938
10054
|
rspackFuture?: {
|
|
9939
10055
|
bundlerInfo?: {
|
|
@@ -9941,7 +10057,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
9941
10057
|
version?: string | undefined;
|
|
9942
10058
|
bundler?: string | undefined;
|
|
9943
10059
|
} | undefined;
|
|
9944
|
-
newIncremental?: boolean | undefined;
|
|
9945
10060
|
} | undefined;
|
|
9946
10061
|
} | undefined;
|
|
9947
10062
|
externals?: string | RegExp | Record<string, string | boolean | string[] | Record<string, string | string[]>> | ((args_0: {
|
|
@@ -10005,7 +10120,6 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
10005
10120
|
stats?: boolean | "verbose" | "normal" | "none" | "errors-only" | "errors-warnings" | "minimal" | "detailed" | "summary" | {
|
|
10006
10121
|
source?: boolean | undefined;
|
|
10007
10122
|
publicPath?: boolean | undefined;
|
|
10008
|
-
hash?: boolean | undefined;
|
|
10009
10123
|
all?: boolean | undefined;
|
|
10010
10124
|
chunks?: boolean | undefined;
|
|
10011
10125
|
usedExports?: boolean | undefined;
|
|
@@ -10020,6 +10134,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
10020
10134
|
errors?: boolean | undefined;
|
|
10021
10135
|
errorsCount?: boolean | undefined;
|
|
10022
10136
|
colors?: boolean | undefined;
|
|
10137
|
+
hash?: boolean | undefined;
|
|
10023
10138
|
version?: boolean | undefined;
|
|
10024
10139
|
reasons?: boolean | undefined;
|
|
10025
10140
|
outputPath?: boolean | undefined;
|
|
@@ -10104,9 +10219,9 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
10104
10219
|
cacheGroups?: Record<string, false | {
|
|
10105
10220
|
filename?: string | undefined;
|
|
10106
10221
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
10222
|
+
priority?: number | undefined;
|
|
10107
10223
|
type?: string | RegExp | undefined;
|
|
10108
10224
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
10109
|
-
priority?: number | undefined;
|
|
10110
10225
|
enforce?: boolean | undefined;
|
|
10111
10226
|
reuseExistingChunk?: boolean | undefined;
|
|
10112
10227
|
idHint?: string | undefined;
|