@rspack/core 1.0.0-alpha.0 → 1.0.0-alpha.1
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/compiled/enhanced-resolve/index.js +11 -11
- package/dist/Compilation.d.ts +12 -10
- package/dist/Compilation.js +13 -10
- package/dist/Compiler.d.ts +25 -27
- package/dist/Compiler.js +42 -24
- package/dist/ContextModuleFactory.d.ts +1 -1
- package/dist/ContextModuleFactory.js +1 -1
- package/dist/MultiCompiler.d.ts +11 -11
- package/dist/MultiCompiler.js +30 -13
- package/dist/NormalModule.d.ts +7 -3
- package/dist/NormalModule.js +27 -4
- package/dist/NormalModuleFactory.d.ts +2 -1
- package/dist/NormalModuleFactory.js +2 -1
- package/dist/ResolverFactory.d.ts +3 -3
- package/dist/ResolverFactory.js +1 -1
- package/dist/Stats.d.ts +2 -0
- package/dist/Stats.js +6 -0
- package/dist/Watching.d.ts +1 -1
- package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +1 -1
- package/dist/builtin-plugin/JavascriptModulesPlugin.js +1 -1
- package/dist/builtin-plugin/LightningCssMiminizerRspackPlugin.js +1 -1
- package/dist/builtin-plugin/SplitChunksPlugin.js +11 -2
- package/dist/config/adapter.js +7 -6
- package/dist/config/zod.d.ts +585 -162
- package/dist/config/zod.js +4 -2
- package/dist/exports.d.ts +8 -1
- package/dist/exports.js +10 -5
- package/dist/lib/Cache.d.ts +3 -3
- package/dist/lib/Cache.js +1 -1
- package/dist/loader-runner/index.js +9 -5
- package/dist/rspack.d.ts +1 -1
- package/dist/stats/StatsFactory.d.ts +2 -2
- package/dist/stats/StatsFactory.js +12 -12
- package/dist/stats/StatsPrinter.d.ts +1 -1
- package/dist/stats/StatsPrinter.js +8 -8
- package/dist/util/SplitChunkSize.d.ts +5 -0
- package/dist/util/SplitChunkSize.js +18 -0
- package/package.json +6 -6
- package/dist/lite-tapable/index.d.ts +0 -146
- package/dist/lite-tapable/index.js +0 -752
package/dist/config/zod.d.ts
CHANGED
|
@@ -795,7 +795,7 @@ declare const entry: z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion
|
|
|
795
795
|
umdNamedDefine?: boolean | undefined;
|
|
796
796
|
} | undefined;
|
|
797
797
|
dependOn?: string | string[] | undefined;
|
|
798
|
-
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
798
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
799
799
|
import: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
800
800
|
runtime: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodString]>>;
|
|
801
801
|
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodString]>>;
|
|
@@ -926,7 +926,138 @@ declare const entry: z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion
|
|
|
926
926
|
umdNamedDefine?: boolean | undefined;
|
|
927
927
|
} | undefined;
|
|
928
928
|
dependOn?: string | string[] | undefined;
|
|
929
|
-
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]
|
|
929
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodPromise<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
930
|
+
import: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
931
|
+
runtime: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodString]>>;
|
|
932
|
+
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodString]>>;
|
|
933
|
+
baseUri: z.ZodOptional<z.ZodString>;
|
|
934
|
+
chunkLoading: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodUnion<[z.ZodEnum<["jsonp", "import-scripts", "require", "async-node", "import"]>, z.ZodString]>]>>;
|
|
935
|
+
asyncChunks: z.ZodOptional<z.ZodBoolean>;
|
|
936
|
+
wasmLoading: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodUnion<[z.ZodEnum<["fetch-streaming", "fetch", "async-node"]>, z.ZodString]>]>>;
|
|
937
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
938
|
+
library: z.ZodOptional<z.ZodObject<{
|
|
939
|
+
amdContainer: z.ZodOptional<z.ZodString>;
|
|
940
|
+
auxiliaryComment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
941
|
+
amd: z.ZodOptional<z.ZodString>;
|
|
942
|
+
commonjs: z.ZodOptional<z.ZodString>;
|
|
943
|
+
commonjs2: z.ZodOptional<z.ZodString>;
|
|
944
|
+
root: z.ZodOptional<z.ZodString>;
|
|
945
|
+
}, "strict", z.ZodTypeAny, {
|
|
946
|
+
amd?: string | undefined;
|
|
947
|
+
commonjs?: string | undefined;
|
|
948
|
+
commonjs2?: string | undefined;
|
|
949
|
+
root?: string | undefined;
|
|
950
|
+
}, {
|
|
951
|
+
amd?: string | undefined;
|
|
952
|
+
commonjs?: string | undefined;
|
|
953
|
+
commonjs2?: string | undefined;
|
|
954
|
+
root?: string | undefined;
|
|
955
|
+
}>]>>;
|
|
956
|
+
export: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
957
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
958
|
+
amd: z.ZodOptional<z.ZodString>;
|
|
959
|
+
commonjs: z.ZodOptional<z.ZodString>;
|
|
960
|
+
root: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
961
|
+
}, "strict", z.ZodTypeAny, {
|
|
962
|
+
amd?: string | undefined;
|
|
963
|
+
commonjs?: string | undefined;
|
|
964
|
+
root?: string | string[] | undefined;
|
|
965
|
+
}, {
|
|
966
|
+
amd?: string | undefined;
|
|
967
|
+
commonjs?: string | undefined;
|
|
968
|
+
root?: string | string[] | undefined;
|
|
969
|
+
}>]>>;
|
|
970
|
+
type: z.ZodUnion<[z.ZodEnum<["var", "module", "assign", "assign-properties", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system"]>, z.ZodString]>;
|
|
971
|
+
umdNamedDefine: z.ZodOptional<z.ZodBoolean>;
|
|
972
|
+
}, "strict", z.ZodTypeAny, {
|
|
973
|
+
type: string;
|
|
974
|
+
amdContainer?: string | undefined;
|
|
975
|
+
auxiliaryComment?: string | {
|
|
976
|
+
amd?: string | undefined;
|
|
977
|
+
commonjs?: string | undefined;
|
|
978
|
+
commonjs2?: string | undefined;
|
|
979
|
+
root?: string | undefined;
|
|
980
|
+
} | undefined;
|
|
981
|
+
export?: string | string[] | undefined;
|
|
982
|
+
name?: string | string[] | {
|
|
983
|
+
amd?: string | undefined;
|
|
984
|
+
commonjs?: string | undefined;
|
|
985
|
+
root?: string | string[] | undefined;
|
|
986
|
+
} | undefined;
|
|
987
|
+
umdNamedDefine?: boolean | undefined;
|
|
988
|
+
}, {
|
|
989
|
+
type: string;
|
|
990
|
+
amdContainer?: string | undefined;
|
|
991
|
+
auxiliaryComment?: string | {
|
|
992
|
+
amd?: string | undefined;
|
|
993
|
+
commonjs?: string | undefined;
|
|
994
|
+
commonjs2?: string | undefined;
|
|
995
|
+
root?: string | undefined;
|
|
996
|
+
} | undefined;
|
|
997
|
+
export?: string | string[] | undefined;
|
|
998
|
+
name?: string | string[] | {
|
|
999
|
+
amd?: string | undefined;
|
|
1000
|
+
commonjs?: string | undefined;
|
|
1001
|
+
root?: string | string[] | undefined;
|
|
1002
|
+
} | undefined;
|
|
1003
|
+
umdNamedDefine?: boolean | undefined;
|
|
1004
|
+
}>>;
|
|
1005
|
+
dependOn: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
1006
|
+
}, "strict", z.ZodTypeAny, {
|
|
1007
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
1008
|
+
runtime?: string | false | undefined;
|
|
1009
|
+
publicPath?: string | undefined;
|
|
1010
|
+
baseUri?: string | undefined;
|
|
1011
|
+
chunkLoading?: string | false | undefined;
|
|
1012
|
+
asyncChunks?: boolean | undefined;
|
|
1013
|
+
wasmLoading?: string | false | undefined;
|
|
1014
|
+
filename?: string | undefined;
|
|
1015
|
+
library?: {
|
|
1016
|
+
type: string;
|
|
1017
|
+
amdContainer?: string | undefined;
|
|
1018
|
+
auxiliaryComment?: string | {
|
|
1019
|
+
amd?: string | undefined;
|
|
1020
|
+
commonjs?: string | undefined;
|
|
1021
|
+
commonjs2?: string | undefined;
|
|
1022
|
+
root?: string | undefined;
|
|
1023
|
+
} | undefined;
|
|
1024
|
+
export?: string | string[] | undefined;
|
|
1025
|
+
name?: string | string[] | {
|
|
1026
|
+
amd?: string | undefined;
|
|
1027
|
+
commonjs?: string | undefined;
|
|
1028
|
+
root?: string | string[] | undefined;
|
|
1029
|
+
} | undefined;
|
|
1030
|
+
umdNamedDefine?: boolean | undefined;
|
|
1031
|
+
} | undefined;
|
|
1032
|
+
dependOn?: string | string[] | undefined;
|
|
1033
|
+
}, {
|
|
1034
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
1035
|
+
runtime?: string | false | undefined;
|
|
1036
|
+
publicPath?: string | undefined;
|
|
1037
|
+
baseUri?: string | undefined;
|
|
1038
|
+
chunkLoading?: string | false | undefined;
|
|
1039
|
+
asyncChunks?: boolean | undefined;
|
|
1040
|
+
wasmLoading?: string | false | undefined;
|
|
1041
|
+
filename?: string | undefined;
|
|
1042
|
+
library?: {
|
|
1043
|
+
type: string;
|
|
1044
|
+
amdContainer?: string | undefined;
|
|
1045
|
+
auxiliaryComment?: string | {
|
|
1046
|
+
amd?: string | undefined;
|
|
1047
|
+
commonjs?: string | undefined;
|
|
1048
|
+
commonjs2?: string | undefined;
|
|
1049
|
+
root?: string | undefined;
|
|
1050
|
+
} | undefined;
|
|
1051
|
+
export?: string | string[] | undefined;
|
|
1052
|
+
name?: string | string[] | {
|
|
1053
|
+
amd?: string | undefined;
|
|
1054
|
+
commonjs?: string | undefined;
|
|
1055
|
+
root?: string | string[] | undefined;
|
|
1056
|
+
} | undefined;
|
|
1057
|
+
umdNamedDefine?: boolean | undefined;
|
|
1058
|
+
} | undefined;
|
|
1059
|
+
dependOn?: string | string[] | undefined;
|
|
1060
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>]>>]>;
|
|
930
1061
|
export type Entry = z.infer<typeof entry>;
|
|
931
1062
|
declare const path: z.ZodString;
|
|
932
1063
|
export type Path = z.infer<typeof path>;
|
|
@@ -1795,6 +1926,7 @@ declare const javascriptParserOptions: z.ZodObject<{
|
|
|
1795
1926
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1796
1927
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1797
1928
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1929
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1798
1930
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1799
1931
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1800
1932
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1807,6 +1939,7 @@ declare const javascriptParserOptions: z.ZodObject<{
|
|
|
1807
1939
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1808
1940
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1809
1941
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1942
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1810
1943
|
url?: boolean | "relative" | undefined;
|
|
1811
1944
|
exprContextCritical?: boolean | undefined;
|
|
1812
1945
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1819,6 +1952,7 @@ declare const javascriptParserOptions: z.ZodObject<{
|
|
|
1819
1952
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1820
1953
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1821
1954
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1955
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1822
1956
|
url?: boolean | "relative" | undefined;
|
|
1823
1957
|
exprContextCritical?: boolean | undefined;
|
|
1824
1958
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1872,6 +2006,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1872
2006
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1873
2007
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1874
2008
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2009
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1875
2010
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1876
2011
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1877
2012
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1884,6 +2019,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1884
2019
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1885
2020
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1886
2021
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2022
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1887
2023
|
url?: boolean | "relative" | undefined;
|
|
1888
2024
|
exprContextCritical?: boolean | undefined;
|
|
1889
2025
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1896,6 +2032,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1896
2032
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1897
2033
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1898
2034
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2035
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1899
2036
|
url?: boolean | "relative" | undefined;
|
|
1900
2037
|
exprContextCritical?: boolean | undefined;
|
|
1901
2038
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1909,6 +2046,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1909
2046
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1910
2047
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1911
2048
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2049
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1912
2050
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1913
2051
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1914
2052
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1921,6 +2059,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1921
2059
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1922
2060
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1923
2061
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2062
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1924
2063
|
url?: boolean | "relative" | undefined;
|
|
1925
2064
|
exprContextCritical?: boolean | undefined;
|
|
1926
2065
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1933,6 +2072,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1933
2072
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1934
2073
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1935
2074
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2075
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1936
2076
|
url?: boolean | "relative" | undefined;
|
|
1937
2077
|
exprContextCritical?: boolean | undefined;
|
|
1938
2078
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1946,6 +2086,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1946
2086
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1947
2087
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1948
2088
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2089
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1949
2090
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1950
2091
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1951
2092
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1958,6 +2099,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1958
2099
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1959
2100
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1960
2101
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2102
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1961
2103
|
url?: boolean | "relative" | undefined;
|
|
1962
2104
|
exprContextCritical?: boolean | undefined;
|
|
1963
2105
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1970,6 +2112,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1970
2112
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1971
2113
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1972
2114
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2115
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1973
2116
|
url?: boolean | "relative" | undefined;
|
|
1974
2117
|
exprContextCritical?: boolean | undefined;
|
|
1975
2118
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -1983,6 +2126,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1983
2126
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1984
2127
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1985
2128
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2129
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1986
2130
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1987
2131
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1988
2132
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1995,6 +2139,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1995
2139
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1996
2140
|
dynamicImportPreload?: number | boolean | undefined;
|
|
1997
2141
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2142
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1998
2143
|
url?: boolean | "relative" | undefined;
|
|
1999
2144
|
exprContextCritical?: boolean | undefined;
|
|
2000
2145
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2007,6 +2152,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2007
2152
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2008
2153
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2009
2154
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2155
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2010
2156
|
url?: boolean | "relative" | undefined;
|
|
2011
2157
|
exprContextCritical?: boolean | undefined;
|
|
2012
2158
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2035,6 +2181,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2035
2181
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2036
2182
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2037
2183
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2184
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2038
2185
|
url?: boolean | "relative" | undefined;
|
|
2039
2186
|
exprContextCritical?: boolean | undefined;
|
|
2040
2187
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2048,6 +2195,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2048
2195
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2049
2196
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2050
2197
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2198
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2051
2199
|
url?: boolean | "relative" | undefined;
|
|
2052
2200
|
exprContextCritical?: boolean | undefined;
|
|
2053
2201
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2061,6 +2209,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2061
2209
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2062
2210
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2063
2211
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2212
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2064
2213
|
url?: boolean | "relative" | undefined;
|
|
2065
2214
|
exprContextCritical?: boolean | undefined;
|
|
2066
2215
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2074,6 +2223,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2074
2223
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2075
2224
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2076
2225
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2226
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2077
2227
|
url?: boolean | "relative" | undefined;
|
|
2078
2228
|
exprContextCritical?: boolean | undefined;
|
|
2079
2229
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2102,6 +2252,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2102
2252
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2103
2253
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2104
2254
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2255
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2105
2256
|
url?: boolean | "relative" | undefined;
|
|
2106
2257
|
exprContextCritical?: boolean | undefined;
|
|
2107
2258
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2115,6 +2266,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2115
2266
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2116
2267
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2117
2268
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2269
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2118
2270
|
url?: boolean | "relative" | undefined;
|
|
2119
2271
|
exprContextCritical?: boolean | undefined;
|
|
2120
2272
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2128,6 +2280,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2128
2280
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2129
2281
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2130
2282
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2283
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2131
2284
|
url?: boolean | "relative" | undefined;
|
|
2132
2285
|
exprContextCritical?: boolean | undefined;
|
|
2133
2286
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2141,6 +2294,7 @@ declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
2141
2294
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2142
2295
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2143
2296
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2297
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2144
2298
|
url?: boolean | "relative" | undefined;
|
|
2145
2299
|
exprContextCritical?: boolean | undefined;
|
|
2146
2300
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2197,6 +2351,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2197
2351
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2198
2352
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2199
2353
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2354
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2200
2355
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2201
2356
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2202
2357
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2209,6 +2364,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2209
2364
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2210
2365
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2211
2366
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2367
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2212
2368
|
url?: boolean | "relative" | undefined;
|
|
2213
2369
|
exprContextCritical?: boolean | undefined;
|
|
2214
2370
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2221,6 +2377,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2221
2377
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2222
2378
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2223
2379
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2380
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2224
2381
|
url?: boolean | "relative" | undefined;
|
|
2225
2382
|
exprContextCritical?: boolean | undefined;
|
|
2226
2383
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2234,6 +2391,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2234
2391
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2235
2392
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2236
2393
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2394
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2237
2395
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2238
2396
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2239
2397
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2246,6 +2404,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2246
2404
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2247
2405
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2248
2406
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2407
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2249
2408
|
url?: boolean | "relative" | undefined;
|
|
2250
2409
|
exprContextCritical?: boolean | undefined;
|
|
2251
2410
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2258,6 +2417,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2258
2417
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2259
2418
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2260
2419
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2420
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2261
2421
|
url?: boolean | "relative" | undefined;
|
|
2262
2422
|
exprContextCritical?: boolean | undefined;
|
|
2263
2423
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2271,6 +2431,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2271
2431
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2272
2432
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2273
2433
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2434
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2274
2435
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2275
2436
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2276
2437
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2283,6 +2444,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2283
2444
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2284
2445
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2285
2446
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2447
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2286
2448
|
url?: boolean | "relative" | undefined;
|
|
2287
2449
|
exprContextCritical?: boolean | undefined;
|
|
2288
2450
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2295,6 +2457,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2295
2457
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2296
2458
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2297
2459
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2460
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2298
2461
|
url?: boolean | "relative" | undefined;
|
|
2299
2462
|
exprContextCritical?: boolean | undefined;
|
|
2300
2463
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2308,6 +2471,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2308
2471
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2309
2472
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2310
2473
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2474
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2311
2475
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2312
2476
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2313
2477
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2320,6 +2484,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2320
2484
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2321
2485
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2322
2486
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2487
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2323
2488
|
url?: boolean | "relative" | undefined;
|
|
2324
2489
|
exprContextCritical?: boolean | undefined;
|
|
2325
2490
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2332,6 +2497,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2332
2497
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2333
2498
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2334
2499
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2500
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2335
2501
|
url?: boolean | "relative" | undefined;
|
|
2336
2502
|
exprContextCritical?: boolean | undefined;
|
|
2337
2503
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2360,6 +2526,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2360
2526
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2361
2527
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2362
2528
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2529
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2363
2530
|
url?: boolean | "relative" | undefined;
|
|
2364
2531
|
exprContextCritical?: boolean | undefined;
|
|
2365
2532
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2373,6 +2540,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2373
2540
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2374
2541
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2375
2542
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2543
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2376
2544
|
url?: boolean | "relative" | undefined;
|
|
2377
2545
|
exprContextCritical?: boolean | undefined;
|
|
2378
2546
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2386,6 +2554,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2386
2554
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2387
2555
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2388
2556
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2557
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2389
2558
|
url?: boolean | "relative" | undefined;
|
|
2390
2559
|
exprContextCritical?: boolean | undefined;
|
|
2391
2560
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2399,6 +2568,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2399
2568
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2400
2569
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2401
2570
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2571
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2402
2572
|
url?: boolean | "relative" | undefined;
|
|
2403
2573
|
exprContextCritical?: boolean | undefined;
|
|
2404
2574
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2427,6 +2597,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2427
2597
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2428
2598
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2429
2599
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2600
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2430
2601
|
url?: boolean | "relative" | undefined;
|
|
2431
2602
|
exprContextCritical?: boolean | undefined;
|
|
2432
2603
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2440,6 +2611,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2440
2611
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2441
2612
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2442
2613
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2614
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2443
2615
|
url?: boolean | "relative" | undefined;
|
|
2444
2616
|
exprContextCritical?: boolean | undefined;
|
|
2445
2617
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2453,6 +2625,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2453
2625
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2454
2626
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2455
2627
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2628
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2456
2629
|
url?: boolean | "relative" | undefined;
|
|
2457
2630
|
exprContextCritical?: boolean | undefined;
|
|
2458
2631
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -2466,6 +2639,7 @@ declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
|
2466
2639
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2467
2640
|
dynamicImportPreload?: number | boolean | undefined;
|
|
2468
2641
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2642
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2469
2643
|
url?: boolean | "relative" | undefined;
|
|
2470
2644
|
exprContextCritical?: boolean | undefined;
|
|
2471
2645
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3175,6 +3349,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3175
3349
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
3176
3350
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3177
3351
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3352
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
3178
3353
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
3179
3354
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
3180
3355
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3187,6 +3362,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3187
3362
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3188
3363
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3189
3364
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3365
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3190
3366
|
url?: boolean | "relative" | undefined;
|
|
3191
3367
|
exprContextCritical?: boolean | undefined;
|
|
3192
3368
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3199,6 +3375,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3199
3375
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3200
3376
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3201
3377
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3378
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3202
3379
|
url?: boolean | "relative" | undefined;
|
|
3203
3380
|
exprContextCritical?: boolean | undefined;
|
|
3204
3381
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3212,6 +3389,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3212
3389
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
3213
3390
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3214
3391
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3392
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
3215
3393
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
3216
3394
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
3217
3395
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3224,6 +3402,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3224
3402
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3225
3403
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3226
3404
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3405
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3227
3406
|
url?: boolean | "relative" | undefined;
|
|
3228
3407
|
exprContextCritical?: boolean | undefined;
|
|
3229
3408
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3236,6 +3415,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3236
3415
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3237
3416
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3238
3417
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3418
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3239
3419
|
url?: boolean | "relative" | undefined;
|
|
3240
3420
|
exprContextCritical?: boolean | undefined;
|
|
3241
3421
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3249,6 +3429,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3249
3429
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
3250
3430
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3251
3431
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3432
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
3252
3433
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
3253
3434
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
3254
3435
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3261,6 +3442,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3261
3442
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3262
3443
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3263
3444
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3445
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3264
3446
|
url?: boolean | "relative" | undefined;
|
|
3265
3447
|
exprContextCritical?: boolean | undefined;
|
|
3266
3448
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3273,6 +3455,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3273
3455
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3274
3456
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3275
3457
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3458
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3276
3459
|
url?: boolean | "relative" | undefined;
|
|
3277
3460
|
exprContextCritical?: boolean | undefined;
|
|
3278
3461
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3286,6 +3469,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3286
3469
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
3287
3470
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3288
3471
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
3472
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
3289
3473
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
3290
3474
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
3291
3475
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3298,6 +3482,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3298
3482
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3299
3483
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3300
3484
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3485
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3301
3486
|
url?: boolean | "relative" | undefined;
|
|
3302
3487
|
exprContextCritical?: boolean | undefined;
|
|
3303
3488
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3310,6 +3495,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3310
3495
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3311
3496
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3312
3497
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3498
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3313
3499
|
url?: boolean | "relative" | undefined;
|
|
3314
3500
|
exprContextCritical?: boolean | undefined;
|
|
3315
3501
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3338,6 +3524,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3338
3524
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3339
3525
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3340
3526
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3527
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3341
3528
|
url?: boolean | "relative" | undefined;
|
|
3342
3529
|
exprContextCritical?: boolean | undefined;
|
|
3343
3530
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3351,6 +3538,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3351
3538
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3352
3539
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3353
3540
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3541
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3354
3542
|
url?: boolean | "relative" | undefined;
|
|
3355
3543
|
exprContextCritical?: boolean | undefined;
|
|
3356
3544
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3364,6 +3552,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3364
3552
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3365
3553
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3366
3554
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3555
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3367
3556
|
url?: boolean | "relative" | undefined;
|
|
3368
3557
|
exprContextCritical?: boolean | undefined;
|
|
3369
3558
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3377,6 +3566,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3377
3566
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3378
3567
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3379
3568
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3569
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3380
3570
|
url?: boolean | "relative" | undefined;
|
|
3381
3571
|
exprContextCritical?: boolean | undefined;
|
|
3382
3572
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3405,6 +3595,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3405
3595
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3406
3596
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3407
3597
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3598
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3408
3599
|
url?: boolean | "relative" | undefined;
|
|
3409
3600
|
exprContextCritical?: boolean | undefined;
|
|
3410
3601
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3418,6 +3609,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3418
3609
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3419
3610
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3420
3611
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3612
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3421
3613
|
url?: boolean | "relative" | undefined;
|
|
3422
3614
|
exprContextCritical?: boolean | undefined;
|
|
3423
3615
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3431,6 +3623,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3431
3623
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3432
3624
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3433
3625
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3626
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3434
3627
|
url?: boolean | "relative" | undefined;
|
|
3435
3628
|
exprContextCritical?: boolean | undefined;
|
|
3436
3629
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3444,6 +3637,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3444
3637
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3445
3638
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3446
3639
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3640
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3447
3641
|
url?: boolean | "relative" | undefined;
|
|
3448
3642
|
exprContextCritical?: boolean | undefined;
|
|
3449
3643
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3703,6 +3897,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3703
3897
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3704
3898
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3705
3899
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3900
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3706
3901
|
url?: boolean | "relative" | undefined;
|
|
3707
3902
|
exprContextCritical?: boolean | undefined;
|
|
3708
3903
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3716,6 +3911,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3716
3911
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3717
3912
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3718
3913
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3914
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3719
3915
|
url?: boolean | "relative" | undefined;
|
|
3720
3916
|
exprContextCritical?: boolean | undefined;
|
|
3721
3917
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3729,6 +3925,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3729
3925
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3730
3926
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3731
3927
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3928
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3732
3929
|
url?: boolean | "relative" | undefined;
|
|
3733
3930
|
exprContextCritical?: boolean | undefined;
|
|
3734
3931
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3742,6 +3939,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3742
3939
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3743
3940
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3744
3941
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
3942
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3745
3943
|
url?: boolean | "relative" | undefined;
|
|
3746
3944
|
exprContextCritical?: boolean | undefined;
|
|
3747
3945
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3819,6 +4017,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3819
4017
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3820
4018
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3821
4019
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
4020
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3822
4021
|
url?: boolean | "relative" | undefined;
|
|
3823
4022
|
exprContextCritical?: boolean | undefined;
|
|
3824
4023
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3832,6 +4031,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3832
4031
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3833
4032
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3834
4033
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
4034
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3835
4035
|
url?: boolean | "relative" | undefined;
|
|
3836
4036
|
exprContextCritical?: boolean | undefined;
|
|
3837
4037
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3845,6 +4045,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3845
4045
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3846
4046
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3847
4047
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
4048
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3848
4049
|
url?: boolean | "relative" | undefined;
|
|
3849
4050
|
exprContextCritical?: boolean | undefined;
|
|
3850
4051
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -3858,6 +4059,7 @@ declare const moduleOptions: z.ZodObject<{
|
|
|
3858
4059
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
3859
4060
|
dynamicImportPreload?: number | boolean | undefined;
|
|
3860
4061
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
4062
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
3861
4063
|
url?: boolean | "relative" | undefined;
|
|
3862
4064
|
exprContextCritical?: boolean | undefined;
|
|
3863
4065
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -4573,10 +4775,10 @@ declare const optimizationSplitChunksCacheGroup: z.ZodObject<{
|
|
|
4573
4775
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4574
4776
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
4575
4777
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4576
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
4577
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
4578
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
4579
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
4778
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4779
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4780
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4781
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4580
4782
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
4581
4783
|
test: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Module, z.ZodTypeDef, Module>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4582
4784
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4590,10 +4792,10 @@ declare const optimizationSplitChunksCacheGroup: z.ZodObject<{
|
|
|
4590
4792
|
defaultSizeTypes?: string[] | undefined;
|
|
4591
4793
|
minChunks?: number | undefined;
|
|
4592
4794
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4593
|
-
minSize?: number | undefined;
|
|
4594
|
-
maxSize?: number | undefined;
|
|
4595
|
-
maxAsyncSize?: number | undefined;
|
|
4596
|
-
maxInitialSize?: number | undefined;
|
|
4795
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4796
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4797
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4798
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4597
4799
|
automaticNameDelimiter?: string | undefined;
|
|
4598
4800
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4599
4801
|
priority?: number | undefined;
|
|
@@ -4607,10 +4809,10 @@ declare const optimizationSplitChunksCacheGroup: z.ZodObject<{
|
|
|
4607
4809
|
defaultSizeTypes?: string[] | undefined;
|
|
4608
4810
|
minChunks?: number | undefined;
|
|
4609
4811
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4610
|
-
minSize?: number | undefined;
|
|
4611
|
-
maxSize?: number | undefined;
|
|
4612
|
-
maxAsyncSize?: number | undefined;
|
|
4613
|
-
maxInitialSize?: number | undefined;
|
|
4812
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4813
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4814
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4815
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4614
4816
|
automaticNameDelimiter?: string | undefined;
|
|
4615
4817
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4616
4818
|
priority?: number | undefined;
|
|
@@ -4626,20 +4828,20 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
4626
4828
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4627
4829
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
4628
4830
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4629
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
4630
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
4631
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
4632
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
4831
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4832
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4833
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4834
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4633
4835
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
4634
4836
|
cacheGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<false>, z.ZodObject<{
|
|
4635
4837
|
chunks: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEnum<["initial", "async", "all"]>, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Chunk, z.ZodTypeDef, Chunk>], z.ZodUnknown>, z.ZodBoolean>]>>;
|
|
4636
4838
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4637
4839
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
4638
4840
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4639
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
4640
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
4641
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
4642
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
4841
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4842
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4843
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4844
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4643
4845
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
4644
4846
|
test: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Module, z.ZodTypeDef, Module>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4645
4847
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4653,10 +4855,10 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
4653
4855
|
defaultSizeTypes?: string[] | undefined;
|
|
4654
4856
|
minChunks?: number | undefined;
|
|
4655
4857
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4656
|
-
minSize?: number | undefined;
|
|
4657
|
-
maxSize?: number | undefined;
|
|
4658
|
-
maxAsyncSize?: number | undefined;
|
|
4659
|
-
maxInitialSize?: number | undefined;
|
|
4858
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4859
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4860
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4861
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4660
4862
|
automaticNameDelimiter?: string | undefined;
|
|
4661
4863
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4662
4864
|
priority?: number | undefined;
|
|
@@ -4670,10 +4872,10 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
4670
4872
|
defaultSizeTypes?: string[] | undefined;
|
|
4671
4873
|
minChunks?: number | undefined;
|
|
4672
4874
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4673
|
-
minSize?: number | undefined;
|
|
4674
|
-
maxSize?: number | undefined;
|
|
4675
|
-
maxAsyncSize?: number | undefined;
|
|
4676
|
-
maxInitialSize?: number | undefined;
|
|
4875
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4876
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4877
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4878
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4677
4879
|
automaticNameDelimiter?: string | undefined;
|
|
4678
4880
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4679
4881
|
priority?: number | undefined;
|
|
@@ -4713,20 +4915,20 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
4713
4915
|
defaultSizeTypes?: string[] | undefined;
|
|
4714
4916
|
minChunks?: number | undefined;
|
|
4715
4917
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4716
|
-
minSize?: number | undefined;
|
|
4717
|
-
maxSize?: number | undefined;
|
|
4718
|
-
maxAsyncSize?: number | undefined;
|
|
4719
|
-
maxInitialSize?: number | undefined;
|
|
4918
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4919
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4920
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4921
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4720
4922
|
automaticNameDelimiter?: string | undefined;
|
|
4721
4923
|
cacheGroups?: Record<string, false | {
|
|
4722
4924
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
4723
4925
|
defaultSizeTypes?: string[] | undefined;
|
|
4724
4926
|
minChunks?: number | undefined;
|
|
4725
4927
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4726
|
-
minSize?: number | undefined;
|
|
4727
|
-
maxSize?: number | undefined;
|
|
4728
|
-
maxAsyncSize?: number | undefined;
|
|
4729
|
-
maxInitialSize?: number | undefined;
|
|
4928
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4929
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4930
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4931
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4730
4932
|
automaticNameDelimiter?: string | undefined;
|
|
4731
4933
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4732
4934
|
priority?: number | undefined;
|
|
@@ -4752,20 +4954,20 @@ declare const optimizationSplitChunksOptions: z.ZodObject<{
|
|
|
4752
4954
|
defaultSizeTypes?: string[] | undefined;
|
|
4753
4955
|
minChunks?: number | undefined;
|
|
4754
4956
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4755
|
-
minSize?: number | undefined;
|
|
4756
|
-
maxSize?: number | undefined;
|
|
4757
|
-
maxAsyncSize?: number | undefined;
|
|
4758
|
-
maxInitialSize?: number | undefined;
|
|
4957
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4958
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4959
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4960
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4759
4961
|
automaticNameDelimiter?: string | undefined;
|
|
4760
4962
|
cacheGroups?: Record<string, false | {
|
|
4761
4963
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
4762
4964
|
defaultSizeTypes?: string[] | undefined;
|
|
4763
4965
|
minChunks?: number | undefined;
|
|
4764
4966
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4765
|
-
minSize?: number | undefined;
|
|
4766
|
-
maxSize?: number | undefined;
|
|
4767
|
-
maxAsyncSize?: number | undefined;
|
|
4768
|
-
maxInitialSize?: number | undefined;
|
|
4967
|
+
minSize?: number | Record<string, number> | undefined;
|
|
4968
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
4969
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
4970
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4769
4971
|
automaticNameDelimiter?: string | undefined;
|
|
4770
4972
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4771
4973
|
priority?: number | undefined;
|
|
@@ -4799,20 +5001,20 @@ declare const optimization: z.ZodObject<{
|
|
|
4799
5001
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4800
5002
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
4801
5003
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4802
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
4803
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
4804
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
4805
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
5004
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5005
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5006
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5007
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4806
5008
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
4807
5009
|
cacheGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<false>, z.ZodObject<{
|
|
4808
5010
|
chunks: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEnum<["initial", "async", "all"]>, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Chunk, z.ZodTypeDef, Chunk>], z.ZodUnknown>, z.ZodBoolean>]>>;
|
|
4809
5011
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4810
5012
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
4811
5013
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4812
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
4813
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
4814
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
4815
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
5014
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5015
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5016
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
5017
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
4816
5018
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
4817
5019
|
test: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Module, z.ZodTypeDef, Module>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
4818
5020
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4826,10 +5028,10 @@ declare const optimization: z.ZodObject<{
|
|
|
4826
5028
|
defaultSizeTypes?: string[] | undefined;
|
|
4827
5029
|
minChunks?: number | undefined;
|
|
4828
5030
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4829
|
-
minSize?: number | undefined;
|
|
4830
|
-
maxSize?: number | undefined;
|
|
4831
|
-
maxAsyncSize?: number | undefined;
|
|
4832
|
-
maxInitialSize?: number | undefined;
|
|
5031
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5032
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5033
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5034
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4833
5035
|
automaticNameDelimiter?: string | undefined;
|
|
4834
5036
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4835
5037
|
priority?: number | undefined;
|
|
@@ -4843,10 +5045,10 @@ declare const optimization: z.ZodObject<{
|
|
|
4843
5045
|
defaultSizeTypes?: string[] | undefined;
|
|
4844
5046
|
minChunks?: number | undefined;
|
|
4845
5047
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4846
|
-
minSize?: number | undefined;
|
|
4847
|
-
maxSize?: number | undefined;
|
|
4848
|
-
maxAsyncSize?: number | undefined;
|
|
4849
|
-
maxInitialSize?: number | undefined;
|
|
5048
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5049
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5050
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5051
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4850
5052
|
automaticNameDelimiter?: string | undefined;
|
|
4851
5053
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4852
5054
|
priority?: number | undefined;
|
|
@@ -4886,20 +5088,20 @@ declare const optimization: z.ZodObject<{
|
|
|
4886
5088
|
defaultSizeTypes?: string[] | undefined;
|
|
4887
5089
|
minChunks?: number | undefined;
|
|
4888
5090
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4889
|
-
minSize?: number | undefined;
|
|
4890
|
-
maxSize?: number | undefined;
|
|
4891
|
-
maxAsyncSize?: number | undefined;
|
|
4892
|
-
maxInitialSize?: number | undefined;
|
|
5091
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5092
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5093
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5094
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4893
5095
|
automaticNameDelimiter?: string | undefined;
|
|
4894
5096
|
cacheGroups?: Record<string, false | {
|
|
4895
5097
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
4896
5098
|
defaultSizeTypes?: string[] | undefined;
|
|
4897
5099
|
minChunks?: number | undefined;
|
|
4898
5100
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4899
|
-
minSize?: number | undefined;
|
|
4900
|
-
maxSize?: number | undefined;
|
|
4901
|
-
maxAsyncSize?: number | undefined;
|
|
4902
|
-
maxInitialSize?: number | undefined;
|
|
5101
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5102
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5103
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5104
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4903
5105
|
automaticNameDelimiter?: string | undefined;
|
|
4904
5106
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4905
5107
|
priority?: number | undefined;
|
|
@@ -4925,20 +5127,20 @@ declare const optimization: z.ZodObject<{
|
|
|
4925
5127
|
defaultSizeTypes?: string[] | undefined;
|
|
4926
5128
|
minChunks?: number | undefined;
|
|
4927
5129
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4928
|
-
minSize?: number | undefined;
|
|
4929
|
-
maxSize?: number | undefined;
|
|
4930
|
-
maxAsyncSize?: number | undefined;
|
|
4931
|
-
maxInitialSize?: number | undefined;
|
|
5130
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5131
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5132
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5133
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4932
5134
|
automaticNameDelimiter?: string | undefined;
|
|
4933
5135
|
cacheGroups?: Record<string, false | {
|
|
4934
5136
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
4935
5137
|
defaultSizeTypes?: string[] | undefined;
|
|
4936
5138
|
minChunks?: number | undefined;
|
|
4937
5139
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
4938
|
-
minSize?: number | undefined;
|
|
4939
|
-
maxSize?: number | undefined;
|
|
4940
|
-
maxAsyncSize?: number | undefined;
|
|
4941
|
-
maxInitialSize?: number | undefined;
|
|
5140
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5141
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5142
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5143
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
4942
5144
|
automaticNameDelimiter?: string | undefined;
|
|
4943
5145
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
4944
5146
|
priority?: number | undefined;
|
|
@@ -4998,20 +5200,20 @@ declare const optimization: z.ZodObject<{
|
|
|
4998
5200
|
defaultSizeTypes?: string[] | undefined;
|
|
4999
5201
|
minChunks?: number | undefined;
|
|
5000
5202
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5001
|
-
minSize?: number | undefined;
|
|
5002
|
-
maxSize?: number | undefined;
|
|
5003
|
-
maxAsyncSize?: number | undefined;
|
|
5004
|
-
maxInitialSize?: number | undefined;
|
|
5203
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5204
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5205
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5206
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
5005
5207
|
automaticNameDelimiter?: string | undefined;
|
|
5006
5208
|
cacheGroups?: Record<string, false | {
|
|
5007
5209
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
5008
5210
|
defaultSizeTypes?: string[] | undefined;
|
|
5009
5211
|
minChunks?: number | undefined;
|
|
5010
5212
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5011
|
-
minSize?: number | undefined;
|
|
5012
|
-
maxSize?: number | undefined;
|
|
5013
|
-
maxAsyncSize?: number | undefined;
|
|
5014
|
-
maxInitialSize?: number | undefined;
|
|
5213
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5214
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5215
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5216
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
5015
5217
|
automaticNameDelimiter?: string | undefined;
|
|
5016
5218
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5017
5219
|
priority?: number | undefined;
|
|
@@ -5059,20 +5261,20 @@ declare const optimization: z.ZodObject<{
|
|
|
5059
5261
|
defaultSizeTypes?: string[] | undefined;
|
|
5060
5262
|
minChunks?: number | undefined;
|
|
5061
5263
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5062
|
-
minSize?: number | undefined;
|
|
5063
|
-
maxSize?: number | undefined;
|
|
5064
|
-
maxAsyncSize?: number | undefined;
|
|
5065
|
-
maxInitialSize?: number | undefined;
|
|
5264
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5265
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5266
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5267
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
5066
5268
|
automaticNameDelimiter?: string | undefined;
|
|
5067
5269
|
cacheGroups?: Record<string, false | {
|
|
5068
5270
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
5069
5271
|
defaultSizeTypes?: string[] | undefined;
|
|
5070
5272
|
minChunks?: number | undefined;
|
|
5071
5273
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
5072
|
-
minSize?: number | undefined;
|
|
5073
|
-
maxSize?: number | undefined;
|
|
5074
|
-
maxAsyncSize?: number | undefined;
|
|
5075
|
-
maxInitialSize?: number | undefined;
|
|
5274
|
+
minSize?: number | Record<string, number> | undefined;
|
|
5275
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
5276
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
5277
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
5076
5278
|
automaticNameDelimiter?: string | undefined;
|
|
5077
5279
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
5078
5280
|
priority?: number | undefined;
|
|
@@ -5418,7 +5620,138 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
5418
5620
|
umdNamedDefine?: boolean | undefined;
|
|
5419
5621
|
} | undefined;
|
|
5420
5622
|
dependOn?: string | string[] | undefined;
|
|
5421
|
-
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
5623
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
5624
|
+
import: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
5625
|
+
runtime: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodString]>>;
|
|
5626
|
+
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodString]>>;
|
|
5627
|
+
baseUri: z.ZodOptional<z.ZodString>;
|
|
5628
|
+
chunkLoading: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodUnion<[z.ZodEnum<["jsonp", "import-scripts", "require", "async-node", "import"]>, z.ZodString]>]>>;
|
|
5629
|
+
asyncChunks: z.ZodOptional<z.ZodBoolean>;
|
|
5630
|
+
wasmLoading: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodUnion<[z.ZodEnum<["fetch-streaming", "fetch", "async-node"]>, z.ZodString]>]>>;
|
|
5631
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
5632
|
+
library: z.ZodOptional<z.ZodObject<{
|
|
5633
|
+
amdContainer: z.ZodOptional<z.ZodString>;
|
|
5634
|
+
auxiliaryComment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5635
|
+
amd: z.ZodOptional<z.ZodString>;
|
|
5636
|
+
commonjs: z.ZodOptional<z.ZodString>;
|
|
5637
|
+
commonjs2: z.ZodOptional<z.ZodString>;
|
|
5638
|
+
root: z.ZodOptional<z.ZodString>;
|
|
5639
|
+
}, "strict", z.ZodTypeAny, {
|
|
5640
|
+
amd?: string | undefined;
|
|
5641
|
+
commonjs?: string | undefined;
|
|
5642
|
+
commonjs2?: string | undefined;
|
|
5643
|
+
root?: string | undefined;
|
|
5644
|
+
}, {
|
|
5645
|
+
amd?: string | undefined;
|
|
5646
|
+
commonjs?: string | undefined;
|
|
5647
|
+
commonjs2?: string | undefined;
|
|
5648
|
+
root?: string | undefined;
|
|
5649
|
+
}>]>>;
|
|
5650
|
+
export: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
5651
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
5652
|
+
amd: z.ZodOptional<z.ZodString>;
|
|
5653
|
+
commonjs: z.ZodOptional<z.ZodString>;
|
|
5654
|
+
root: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
5655
|
+
}, "strict", z.ZodTypeAny, {
|
|
5656
|
+
amd?: string | undefined;
|
|
5657
|
+
commonjs?: string | undefined;
|
|
5658
|
+
root?: string | string[] | undefined;
|
|
5659
|
+
}, {
|
|
5660
|
+
amd?: string | undefined;
|
|
5661
|
+
commonjs?: string | undefined;
|
|
5662
|
+
root?: string | string[] | undefined;
|
|
5663
|
+
}>]>>;
|
|
5664
|
+
type: z.ZodUnion<[z.ZodEnum<["var", "module", "assign", "assign-properties", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system"]>, z.ZodString]>;
|
|
5665
|
+
umdNamedDefine: z.ZodOptional<z.ZodBoolean>;
|
|
5666
|
+
}, "strict", z.ZodTypeAny, {
|
|
5667
|
+
type: string;
|
|
5668
|
+
amdContainer?: string | undefined;
|
|
5669
|
+
auxiliaryComment?: string | {
|
|
5670
|
+
amd?: string | undefined;
|
|
5671
|
+
commonjs?: string | undefined;
|
|
5672
|
+
commonjs2?: string | undefined;
|
|
5673
|
+
root?: string | undefined;
|
|
5674
|
+
} | undefined;
|
|
5675
|
+
export?: string | string[] | undefined;
|
|
5676
|
+
name?: string | string[] | {
|
|
5677
|
+
amd?: string | undefined;
|
|
5678
|
+
commonjs?: string | undefined;
|
|
5679
|
+
root?: string | string[] | undefined;
|
|
5680
|
+
} | undefined;
|
|
5681
|
+
umdNamedDefine?: boolean | undefined;
|
|
5682
|
+
}, {
|
|
5683
|
+
type: string;
|
|
5684
|
+
amdContainer?: string | undefined;
|
|
5685
|
+
auxiliaryComment?: string | {
|
|
5686
|
+
amd?: string | undefined;
|
|
5687
|
+
commonjs?: string | undefined;
|
|
5688
|
+
commonjs2?: string | undefined;
|
|
5689
|
+
root?: string | undefined;
|
|
5690
|
+
} | undefined;
|
|
5691
|
+
export?: string | string[] | undefined;
|
|
5692
|
+
name?: string | string[] | {
|
|
5693
|
+
amd?: string | undefined;
|
|
5694
|
+
commonjs?: string | undefined;
|
|
5695
|
+
root?: string | string[] | undefined;
|
|
5696
|
+
} | undefined;
|
|
5697
|
+
umdNamedDefine?: boolean | undefined;
|
|
5698
|
+
}>>;
|
|
5699
|
+
dependOn: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
5700
|
+
}, "strict", z.ZodTypeAny, {
|
|
5701
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
5702
|
+
runtime?: string | false | undefined;
|
|
5703
|
+
publicPath?: string | undefined;
|
|
5704
|
+
baseUri?: string | undefined;
|
|
5705
|
+
chunkLoading?: string | false | undefined;
|
|
5706
|
+
asyncChunks?: boolean | undefined;
|
|
5707
|
+
wasmLoading?: string | false | undefined;
|
|
5708
|
+
filename?: string | undefined;
|
|
5709
|
+
library?: {
|
|
5710
|
+
type: string;
|
|
5711
|
+
amdContainer?: string | undefined;
|
|
5712
|
+
auxiliaryComment?: string | {
|
|
5713
|
+
amd?: string | undefined;
|
|
5714
|
+
commonjs?: string | undefined;
|
|
5715
|
+
commonjs2?: string | undefined;
|
|
5716
|
+
root?: string | undefined;
|
|
5717
|
+
} | undefined;
|
|
5718
|
+
export?: string | string[] | undefined;
|
|
5719
|
+
name?: string | string[] | {
|
|
5720
|
+
amd?: string | undefined;
|
|
5721
|
+
commonjs?: string | undefined;
|
|
5722
|
+
root?: string | string[] | undefined;
|
|
5723
|
+
} | undefined;
|
|
5724
|
+
umdNamedDefine?: boolean | undefined;
|
|
5725
|
+
} | undefined;
|
|
5726
|
+
dependOn?: string | string[] | undefined;
|
|
5727
|
+
}, {
|
|
5728
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
5729
|
+
runtime?: string | false | undefined;
|
|
5730
|
+
publicPath?: string | undefined;
|
|
5731
|
+
baseUri?: string | undefined;
|
|
5732
|
+
chunkLoading?: string | false | undefined;
|
|
5733
|
+
asyncChunks?: boolean | undefined;
|
|
5734
|
+
wasmLoading?: string | false | undefined;
|
|
5735
|
+
filename?: string | undefined;
|
|
5736
|
+
library?: {
|
|
5737
|
+
type: string;
|
|
5738
|
+
amdContainer?: string | undefined;
|
|
5739
|
+
auxiliaryComment?: string | {
|
|
5740
|
+
amd?: string | undefined;
|
|
5741
|
+
commonjs?: string | undefined;
|
|
5742
|
+
commonjs2?: string | undefined;
|
|
5743
|
+
root?: string | undefined;
|
|
5744
|
+
} | undefined;
|
|
5745
|
+
export?: string | string[] | undefined;
|
|
5746
|
+
name?: string | string[] | {
|
|
5747
|
+
amd?: string | undefined;
|
|
5748
|
+
commonjs?: string | undefined;
|
|
5749
|
+
root?: string | string[] | undefined;
|
|
5750
|
+
} | undefined;
|
|
5751
|
+
umdNamedDefine?: boolean | undefined;
|
|
5752
|
+
} | undefined;
|
|
5753
|
+
dependOn?: string | string[] | undefined;
|
|
5754
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>, z.ZodPromise<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
|
|
5422
5755
|
import: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
5423
5756
|
runtime: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodString]>>;
|
|
5424
5757
|
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodString]>>;
|
|
@@ -5549,7 +5882,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
5549
5882
|
umdNamedDefine?: boolean | undefined;
|
|
5550
5883
|
} | undefined;
|
|
5551
5884
|
dependOn?: string | string[] | undefined;
|
|
5552
|
-
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>]>>;
|
|
5885
|
+
}>]>>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>]>>]>>;
|
|
5553
5886
|
output: z.ZodOptional<z.ZodObject<{
|
|
5554
5887
|
path: z.ZodOptional<z.ZodString>;
|
|
5555
5888
|
pathinfo: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"verbose">]>>;
|
|
@@ -6378,20 +6711,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6378
6711
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6379
6712
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
6380
6713
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
6381
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
6382
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
6383
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
6384
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
6714
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6715
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6716
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6717
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6385
6718
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
6386
6719
|
cacheGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodLiteral<false>, z.ZodObject<{
|
|
6387
6720
|
chunks: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEnum<["initial", "async", "all"]>, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Chunk, z.ZodTypeDef, Chunk>], z.ZodUnknown>, z.ZodBoolean>]>>;
|
|
6388
6721
|
defaultSizeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6389
6722
|
minChunks: z.ZodOptional<z.ZodNumber>;
|
|
6390
6723
|
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodLiteral<false>]>, z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodType<Module, z.ZodTypeDef, Module>>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
6391
|
-
minSize: z.ZodOptional<z.ZodNumber
|
|
6392
|
-
maxSize: z.ZodOptional<z.ZodNumber
|
|
6393
|
-
maxAsyncSize: z.ZodOptional<z.ZodNumber
|
|
6394
|
-
maxInitialSize: z.ZodOptional<z.ZodNumber
|
|
6724
|
+
minSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6725
|
+
maxSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6726
|
+
maxAsyncSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6727
|
+
maxInitialSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodNumber>]>>;
|
|
6395
6728
|
automaticNameDelimiter: z.ZodOptional<z.ZodString>;
|
|
6396
6729
|
test: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodType<Module, z.ZodTypeDef, Module>], z.ZodUnknown>, z.ZodUnknown>]>>;
|
|
6397
6730
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6405,10 +6738,10 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6405
6738
|
defaultSizeTypes?: string[] | undefined;
|
|
6406
6739
|
minChunks?: number | undefined;
|
|
6407
6740
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6408
|
-
minSize?: number | undefined;
|
|
6409
|
-
maxSize?: number | undefined;
|
|
6410
|
-
maxAsyncSize?: number | undefined;
|
|
6411
|
-
maxInitialSize?: number | undefined;
|
|
6741
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6742
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6743
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6744
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6412
6745
|
automaticNameDelimiter?: string | undefined;
|
|
6413
6746
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6414
6747
|
priority?: number | undefined;
|
|
@@ -6422,10 +6755,10 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6422
6755
|
defaultSizeTypes?: string[] | undefined;
|
|
6423
6756
|
minChunks?: number | undefined;
|
|
6424
6757
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6425
|
-
minSize?: number | undefined;
|
|
6426
|
-
maxSize?: number | undefined;
|
|
6427
|
-
maxAsyncSize?: number | undefined;
|
|
6428
|
-
maxInitialSize?: number | undefined;
|
|
6758
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6759
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6760
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6761
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6429
6762
|
automaticNameDelimiter?: string | undefined;
|
|
6430
6763
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6431
6764
|
priority?: number | undefined;
|
|
@@ -6465,20 +6798,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6465
6798
|
defaultSizeTypes?: string[] | undefined;
|
|
6466
6799
|
minChunks?: number | undefined;
|
|
6467
6800
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6468
|
-
minSize?: number | undefined;
|
|
6469
|
-
maxSize?: number | undefined;
|
|
6470
|
-
maxAsyncSize?: number | undefined;
|
|
6471
|
-
maxInitialSize?: number | undefined;
|
|
6801
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6802
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6803
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6804
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6472
6805
|
automaticNameDelimiter?: string | undefined;
|
|
6473
6806
|
cacheGroups?: Record<string, false | {
|
|
6474
6807
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
6475
6808
|
defaultSizeTypes?: string[] | undefined;
|
|
6476
6809
|
minChunks?: number | undefined;
|
|
6477
6810
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6478
|
-
minSize?: number | undefined;
|
|
6479
|
-
maxSize?: number | undefined;
|
|
6480
|
-
maxAsyncSize?: number | undefined;
|
|
6481
|
-
maxInitialSize?: number | undefined;
|
|
6811
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6812
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6813
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6814
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6482
6815
|
automaticNameDelimiter?: string | undefined;
|
|
6483
6816
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6484
6817
|
priority?: number | undefined;
|
|
@@ -6504,20 +6837,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6504
6837
|
defaultSizeTypes?: string[] | undefined;
|
|
6505
6838
|
minChunks?: number | undefined;
|
|
6506
6839
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6507
|
-
minSize?: number | undefined;
|
|
6508
|
-
maxSize?: number | undefined;
|
|
6509
|
-
maxAsyncSize?: number | undefined;
|
|
6510
|
-
maxInitialSize?: number | undefined;
|
|
6840
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6841
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6842
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6843
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6511
6844
|
automaticNameDelimiter?: string | undefined;
|
|
6512
6845
|
cacheGroups?: Record<string, false | {
|
|
6513
6846
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
6514
6847
|
defaultSizeTypes?: string[] | undefined;
|
|
6515
6848
|
minChunks?: number | undefined;
|
|
6516
6849
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6517
|
-
minSize?: number | undefined;
|
|
6518
|
-
maxSize?: number | undefined;
|
|
6519
|
-
maxAsyncSize?: number | undefined;
|
|
6520
|
-
maxInitialSize?: number | undefined;
|
|
6850
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6851
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6852
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6853
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6521
6854
|
automaticNameDelimiter?: string | undefined;
|
|
6522
6855
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6523
6856
|
priority?: number | undefined;
|
|
@@ -6577,20 +6910,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6577
6910
|
defaultSizeTypes?: string[] | undefined;
|
|
6578
6911
|
minChunks?: number | undefined;
|
|
6579
6912
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6580
|
-
minSize?: number | undefined;
|
|
6581
|
-
maxSize?: number | undefined;
|
|
6582
|
-
maxAsyncSize?: number | undefined;
|
|
6583
|
-
maxInitialSize?: number | undefined;
|
|
6913
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6914
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6915
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6916
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6584
6917
|
automaticNameDelimiter?: string | undefined;
|
|
6585
6918
|
cacheGroups?: Record<string, false | {
|
|
6586
6919
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
6587
6920
|
defaultSizeTypes?: string[] | undefined;
|
|
6588
6921
|
minChunks?: number | undefined;
|
|
6589
6922
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6590
|
-
minSize?: number | undefined;
|
|
6591
|
-
maxSize?: number | undefined;
|
|
6592
|
-
maxAsyncSize?: number | undefined;
|
|
6593
|
-
maxInitialSize?: number | undefined;
|
|
6923
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6924
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6925
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6926
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6594
6927
|
automaticNameDelimiter?: string | undefined;
|
|
6595
6928
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6596
6929
|
priority?: number | undefined;
|
|
@@ -6638,20 +6971,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6638
6971
|
defaultSizeTypes?: string[] | undefined;
|
|
6639
6972
|
minChunks?: number | undefined;
|
|
6640
6973
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6641
|
-
minSize?: number | undefined;
|
|
6642
|
-
maxSize?: number | undefined;
|
|
6643
|
-
maxAsyncSize?: number | undefined;
|
|
6644
|
-
maxInitialSize?: number | undefined;
|
|
6974
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6975
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6976
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6977
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6645
6978
|
automaticNameDelimiter?: string | undefined;
|
|
6646
6979
|
cacheGroups?: Record<string, false | {
|
|
6647
6980
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
6648
6981
|
defaultSizeTypes?: string[] | undefined;
|
|
6649
6982
|
minChunks?: number | undefined;
|
|
6650
6983
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
6651
|
-
minSize?: number | undefined;
|
|
6652
|
-
maxSize?: number | undefined;
|
|
6653
|
-
maxAsyncSize?: number | undefined;
|
|
6654
|
-
maxInitialSize?: number | undefined;
|
|
6984
|
+
minSize?: number | Record<string, number> | undefined;
|
|
6985
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
6986
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
6987
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
6655
6988
|
automaticNameDelimiter?: string | undefined;
|
|
6656
6989
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
6657
6990
|
priority?: number | undefined;
|
|
@@ -6739,6 +7072,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6739
7072
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
6740
7073
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
6741
7074
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
7075
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
6742
7076
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
6743
7077
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
6744
7078
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6751,6 +7085,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6751
7085
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6752
7086
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6753
7087
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7088
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6754
7089
|
url?: boolean | "relative" | undefined;
|
|
6755
7090
|
exprContextCritical?: boolean | undefined;
|
|
6756
7091
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6763,6 +7098,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6763
7098
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6764
7099
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6765
7100
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7101
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6766
7102
|
url?: boolean | "relative" | undefined;
|
|
6767
7103
|
exprContextCritical?: boolean | undefined;
|
|
6768
7104
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6776,6 +7112,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6776
7112
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
6777
7113
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
6778
7114
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
7115
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
6779
7116
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
6780
7117
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
6781
7118
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6788,6 +7125,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6788
7125
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6789
7126
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6790
7127
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7128
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6791
7129
|
url?: boolean | "relative" | undefined;
|
|
6792
7130
|
exprContextCritical?: boolean | undefined;
|
|
6793
7131
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6800,6 +7138,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6800
7138
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6801
7139
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6802
7140
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7141
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6803
7142
|
url?: boolean | "relative" | undefined;
|
|
6804
7143
|
exprContextCritical?: boolean | undefined;
|
|
6805
7144
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6813,6 +7152,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6813
7152
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
6814
7153
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
6815
7154
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
7155
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
6816
7156
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
6817
7157
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
6818
7158
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6825,6 +7165,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6825
7165
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6826
7166
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6827
7167
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7168
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6828
7169
|
url?: boolean | "relative" | undefined;
|
|
6829
7170
|
exprContextCritical?: boolean | undefined;
|
|
6830
7171
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6837,6 +7178,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6837
7178
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6838
7179
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6839
7180
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7181
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6840
7182
|
url?: boolean | "relative" | undefined;
|
|
6841
7183
|
exprContextCritical?: boolean | undefined;
|
|
6842
7184
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6850,6 +7192,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6850
7192
|
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
6851
7193
|
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
6852
7194
|
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
7195
|
+
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
6853
7196
|
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
6854
7197
|
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
6855
7198
|
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6862,6 +7205,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6862
7205
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6863
7206
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6864
7207
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7208
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6865
7209
|
url?: boolean | "relative" | undefined;
|
|
6866
7210
|
exprContextCritical?: boolean | undefined;
|
|
6867
7211
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6874,6 +7218,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6874
7218
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6875
7219
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6876
7220
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7221
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6877
7222
|
url?: boolean | "relative" | undefined;
|
|
6878
7223
|
exprContextCritical?: boolean | undefined;
|
|
6879
7224
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6902,6 +7247,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6902
7247
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6903
7248
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6904
7249
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7250
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6905
7251
|
url?: boolean | "relative" | undefined;
|
|
6906
7252
|
exprContextCritical?: boolean | undefined;
|
|
6907
7253
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6915,6 +7261,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6915
7261
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6916
7262
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6917
7263
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7264
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6918
7265
|
url?: boolean | "relative" | undefined;
|
|
6919
7266
|
exprContextCritical?: boolean | undefined;
|
|
6920
7267
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6928,6 +7275,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6928
7275
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6929
7276
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6930
7277
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7278
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6931
7279
|
url?: boolean | "relative" | undefined;
|
|
6932
7280
|
exprContextCritical?: boolean | undefined;
|
|
6933
7281
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6941,6 +7289,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6941
7289
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6942
7290
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6943
7291
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7292
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6944
7293
|
url?: boolean | "relative" | undefined;
|
|
6945
7294
|
exprContextCritical?: boolean | undefined;
|
|
6946
7295
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6969,6 +7318,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6969
7318
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6970
7319
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6971
7320
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7321
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6972
7322
|
url?: boolean | "relative" | undefined;
|
|
6973
7323
|
exprContextCritical?: boolean | undefined;
|
|
6974
7324
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6982,6 +7332,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6982
7332
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6983
7333
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6984
7334
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7335
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6985
7336
|
url?: boolean | "relative" | undefined;
|
|
6986
7337
|
exprContextCritical?: boolean | undefined;
|
|
6987
7338
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -6995,6 +7346,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6995
7346
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
6996
7347
|
dynamicImportPreload?: number | boolean | undefined;
|
|
6997
7348
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7349
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
6998
7350
|
url?: boolean | "relative" | undefined;
|
|
6999
7351
|
exprContextCritical?: boolean | undefined;
|
|
7000
7352
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7008,6 +7360,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7008
7360
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7009
7361
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7010
7362
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7363
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7011
7364
|
url?: boolean | "relative" | undefined;
|
|
7012
7365
|
exprContextCritical?: boolean | undefined;
|
|
7013
7366
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7267,6 +7620,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7267
7620
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7268
7621
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7269
7622
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7623
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7270
7624
|
url?: boolean | "relative" | undefined;
|
|
7271
7625
|
exprContextCritical?: boolean | undefined;
|
|
7272
7626
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7280,6 +7634,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7280
7634
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7281
7635
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7282
7636
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7637
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7283
7638
|
url?: boolean | "relative" | undefined;
|
|
7284
7639
|
exprContextCritical?: boolean | undefined;
|
|
7285
7640
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7293,6 +7648,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7293
7648
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7294
7649
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7295
7650
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7651
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7296
7652
|
url?: boolean | "relative" | undefined;
|
|
7297
7653
|
exprContextCritical?: boolean | undefined;
|
|
7298
7654
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7306,6 +7662,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7306
7662
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7307
7663
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7308
7664
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7665
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7309
7666
|
url?: boolean | "relative" | undefined;
|
|
7310
7667
|
exprContextCritical?: boolean | undefined;
|
|
7311
7668
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7383,6 +7740,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7383
7740
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7384
7741
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7385
7742
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7743
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7386
7744
|
url?: boolean | "relative" | undefined;
|
|
7387
7745
|
exprContextCritical?: boolean | undefined;
|
|
7388
7746
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7396,6 +7754,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7396
7754
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7397
7755
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7398
7756
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7757
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7399
7758
|
url?: boolean | "relative" | undefined;
|
|
7400
7759
|
exprContextCritical?: boolean | undefined;
|
|
7401
7760
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7409,6 +7768,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7409
7768
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7410
7769
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7411
7770
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7771
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7412
7772
|
url?: boolean | "relative" | undefined;
|
|
7413
7773
|
exprContextCritical?: boolean | undefined;
|
|
7414
7774
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7422,6 +7782,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7422
7782
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7423
7783
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7424
7784
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
7785
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7425
7786
|
url?: boolean | "relative" | undefined;
|
|
7426
7787
|
exprContextCritical?: boolean | undefined;
|
|
7427
7788
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7553,7 +7914,34 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7553
7914
|
umdNamedDefine?: boolean | undefined;
|
|
7554
7915
|
} | undefined;
|
|
7555
7916
|
dependOn?: string | string[] | undefined;
|
|
7556
|
-
}>
|
|
7917
|
+
}> | Promise<string | string[] | Record<string, string | string[] | {
|
|
7918
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
7919
|
+
runtime?: string | false | undefined;
|
|
7920
|
+
publicPath?: string | undefined;
|
|
7921
|
+
baseUri?: string | undefined;
|
|
7922
|
+
chunkLoading?: string | false | undefined;
|
|
7923
|
+
asyncChunks?: boolean | undefined;
|
|
7924
|
+
wasmLoading?: string | false | undefined;
|
|
7925
|
+
filename?: string | undefined;
|
|
7926
|
+
library?: {
|
|
7927
|
+
type: string;
|
|
7928
|
+
amdContainer?: string | undefined;
|
|
7929
|
+
auxiliaryComment?: string | {
|
|
7930
|
+
amd?: string | undefined;
|
|
7931
|
+
commonjs?: string | undefined;
|
|
7932
|
+
commonjs2?: string | undefined;
|
|
7933
|
+
root?: string | undefined;
|
|
7934
|
+
} | undefined;
|
|
7935
|
+
export?: string | string[] | undefined;
|
|
7936
|
+
name?: string | string[] | {
|
|
7937
|
+
amd?: string | undefined;
|
|
7938
|
+
commonjs?: string | undefined;
|
|
7939
|
+
root?: string | string[] | undefined;
|
|
7940
|
+
} | undefined;
|
|
7941
|
+
umdNamedDefine?: boolean | undefined;
|
|
7942
|
+
} | undefined;
|
|
7943
|
+
dependOn?: string | string[] | undefined;
|
|
7944
|
+
}>>) | undefined;
|
|
7557
7945
|
output?: {
|
|
7558
7946
|
path?: string | undefined;
|
|
7559
7947
|
pathinfo?: boolean | "verbose" | undefined;
|
|
@@ -7806,20 +8194,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7806
8194
|
defaultSizeTypes?: string[] | undefined;
|
|
7807
8195
|
minChunks?: number | undefined;
|
|
7808
8196
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
7809
|
-
minSize?: number | undefined;
|
|
7810
|
-
maxSize?: number | undefined;
|
|
7811
|
-
maxAsyncSize?: number | undefined;
|
|
7812
|
-
maxInitialSize?: number | undefined;
|
|
8197
|
+
minSize?: number | Record<string, number> | undefined;
|
|
8198
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
8199
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
8200
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
7813
8201
|
automaticNameDelimiter?: string | undefined;
|
|
7814
8202
|
cacheGroups?: Record<string, false | {
|
|
7815
8203
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
7816
8204
|
defaultSizeTypes?: string[] | undefined;
|
|
7817
8205
|
minChunks?: number | undefined;
|
|
7818
8206
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
7819
|
-
minSize?: number | undefined;
|
|
7820
|
-
maxSize?: number | undefined;
|
|
7821
|
-
maxAsyncSize?: number | undefined;
|
|
7822
|
-
maxInitialSize?: number | undefined;
|
|
8207
|
+
minSize?: number | Record<string, number> | undefined;
|
|
8208
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
8209
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
8210
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
7823
8211
|
automaticNameDelimiter?: string | undefined;
|
|
7824
8212
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
7825
8213
|
priority?: number | undefined;
|
|
@@ -7883,6 +8271,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7883
8271
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7884
8272
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7885
8273
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8274
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7886
8275
|
url?: boolean | "relative" | undefined;
|
|
7887
8276
|
exprContextCritical?: boolean | undefined;
|
|
7888
8277
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7896,6 +8285,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7896
8285
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7897
8286
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7898
8287
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8288
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7899
8289
|
url?: boolean | "relative" | undefined;
|
|
7900
8290
|
exprContextCritical?: boolean | undefined;
|
|
7901
8291
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7909,6 +8299,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7909
8299
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7910
8300
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7911
8301
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8302
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7912
8303
|
url?: boolean | "relative" | undefined;
|
|
7913
8304
|
exprContextCritical?: boolean | undefined;
|
|
7914
8305
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -7922,6 +8313,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7922
8313
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
7923
8314
|
dynamicImportPreload?: number | boolean | undefined;
|
|
7924
8315
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8316
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
7925
8317
|
url?: boolean | "relative" | undefined;
|
|
7926
8318
|
exprContextCritical?: boolean | undefined;
|
|
7927
8319
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -8043,7 +8435,34 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8043
8435
|
umdNamedDefine?: boolean | undefined;
|
|
8044
8436
|
} | undefined;
|
|
8045
8437
|
dependOn?: string | string[] | undefined;
|
|
8046
|
-
}>
|
|
8438
|
+
}> | Promise<string | string[] | Record<string, string | string[] | {
|
|
8439
|
+
import: (string | string[]) & (string | string[] | undefined);
|
|
8440
|
+
runtime?: string | false | undefined;
|
|
8441
|
+
publicPath?: string | undefined;
|
|
8442
|
+
baseUri?: string | undefined;
|
|
8443
|
+
chunkLoading?: string | false | undefined;
|
|
8444
|
+
asyncChunks?: boolean | undefined;
|
|
8445
|
+
wasmLoading?: string | false | undefined;
|
|
8446
|
+
filename?: string | undefined;
|
|
8447
|
+
library?: {
|
|
8448
|
+
type: string;
|
|
8449
|
+
amdContainer?: string | undefined;
|
|
8450
|
+
auxiliaryComment?: string | {
|
|
8451
|
+
amd?: string | undefined;
|
|
8452
|
+
commonjs?: string | undefined;
|
|
8453
|
+
commonjs2?: string | undefined;
|
|
8454
|
+
root?: string | undefined;
|
|
8455
|
+
} | undefined;
|
|
8456
|
+
export?: string | string[] | undefined;
|
|
8457
|
+
name?: string | string[] | {
|
|
8458
|
+
amd?: string | undefined;
|
|
8459
|
+
commonjs?: string | undefined;
|
|
8460
|
+
root?: string | string[] | undefined;
|
|
8461
|
+
} | undefined;
|
|
8462
|
+
umdNamedDefine?: boolean | undefined;
|
|
8463
|
+
} | undefined;
|
|
8464
|
+
dependOn?: string | string[] | undefined;
|
|
8465
|
+
}>>) | undefined;
|
|
8047
8466
|
output?: {
|
|
8048
8467
|
path?: string | undefined;
|
|
8049
8468
|
pathinfo?: boolean | "verbose" | undefined;
|
|
@@ -8296,20 +8715,20 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8296
8715
|
defaultSizeTypes?: string[] | undefined;
|
|
8297
8716
|
minChunks?: number | undefined;
|
|
8298
8717
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
8299
|
-
minSize?: number | undefined;
|
|
8300
|
-
maxSize?: number | undefined;
|
|
8301
|
-
maxAsyncSize?: number | undefined;
|
|
8302
|
-
maxInitialSize?: number | undefined;
|
|
8718
|
+
minSize?: number | Record<string, number> | undefined;
|
|
8719
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
8720
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
8721
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
8303
8722
|
automaticNameDelimiter?: string | undefined;
|
|
8304
8723
|
cacheGroups?: Record<string, false | {
|
|
8305
8724
|
chunks?: RegExp | "async" | "initial" | "all" | ((args_0: Chunk, ...args_1: unknown[]) => boolean) | undefined;
|
|
8306
8725
|
defaultSizeTypes?: string[] | undefined;
|
|
8307
8726
|
minChunks?: number | undefined;
|
|
8308
8727
|
name?: string | false | ((args_0: Module | undefined, ...args_1: unknown[]) => unknown) | undefined;
|
|
8309
|
-
minSize?: number | undefined;
|
|
8310
|
-
maxSize?: number | undefined;
|
|
8311
|
-
maxAsyncSize?: number | undefined;
|
|
8312
|
-
maxInitialSize?: number | undefined;
|
|
8728
|
+
minSize?: number | Record<string, number> | undefined;
|
|
8729
|
+
maxSize?: number | Record<string, number> | undefined;
|
|
8730
|
+
maxAsyncSize?: number | Record<string, number> | undefined;
|
|
8731
|
+
maxInitialSize?: number | Record<string, number> | undefined;
|
|
8313
8732
|
automaticNameDelimiter?: string | undefined;
|
|
8314
8733
|
test?: string | RegExp | ((args_0: Module, ...args_1: unknown[]) => unknown) | undefined;
|
|
8315
8734
|
priority?: number | undefined;
|
|
@@ -8373,6 +8792,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8373
8792
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
8374
8793
|
dynamicImportPreload?: number | boolean | undefined;
|
|
8375
8794
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8795
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
8376
8796
|
url?: boolean | "relative" | undefined;
|
|
8377
8797
|
exprContextCritical?: boolean | undefined;
|
|
8378
8798
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -8386,6 +8806,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8386
8806
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
8387
8807
|
dynamicImportPreload?: number | boolean | undefined;
|
|
8388
8808
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8809
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
8389
8810
|
url?: boolean | "relative" | undefined;
|
|
8390
8811
|
exprContextCritical?: boolean | undefined;
|
|
8391
8812
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -8399,6 +8820,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8399
8820
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
8400
8821
|
dynamicImportPreload?: number | boolean | undefined;
|
|
8401
8822
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8823
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
8402
8824
|
url?: boolean | "relative" | undefined;
|
|
8403
8825
|
exprContextCritical?: boolean | undefined;
|
|
8404
8826
|
wrappedContextCritical?: boolean | undefined;
|
|
@@ -8412,6 +8834,7 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
8412
8834
|
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
8413
8835
|
dynamicImportPreload?: number | boolean | undefined;
|
|
8414
8836
|
dynamicImportPrefetch?: number | boolean | undefined;
|
|
8837
|
+
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
8415
8838
|
url?: boolean | "relative" | undefined;
|
|
8416
8839
|
exprContextCritical?: boolean | undefined;
|
|
8417
8840
|
wrappedContextCritical?: boolean | undefined;
|