@rspack/core 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/types.d.ts +309 -1
- package/dist/config/zod.d.ts +11 -2647
- package/dist/index.js +15 -5
- package/package.json +2 -2
package/dist/config/zod.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import type { JsAssetInfo
|
|
2
|
+
import type { JsAssetInfo } from "@rspack/binding";
|
|
3
3
|
import type * as webpackDevServer from "webpack-dev-server";
|
|
4
4
|
import { z } from "../../compiled/zod";
|
|
5
5
|
import { Chunk } from "../Chunk";
|
|
@@ -7,1312 +7,6 @@ import type { Compilation, PathData } from "../Compilation";
|
|
|
7
7
|
import { Module } from "../Module";
|
|
8
8
|
import type * as t from "./types";
|
|
9
9
|
export type * from "./types";
|
|
10
|
-
declare const baseRuleSetCondition: z.ZodUnion<[z.ZodUnion<[z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodString]>, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>;
|
|
11
|
-
export type RuleSetCondition = z.infer<typeof baseRuleSetCondition> | RuleSetConditions | RuleSetLogicalConditions;
|
|
12
|
-
export type RuleSetConditions = RuleSetCondition[];
|
|
13
|
-
export type RuleSetLogicalConditions = {
|
|
14
|
-
and?: RuleSetConditions;
|
|
15
|
-
or?: RuleSetConditions;
|
|
16
|
-
not?: RuleSetCondition;
|
|
17
|
-
};
|
|
18
|
-
declare const ruleSetLoader: z.ZodString;
|
|
19
|
-
export type RuleSetLoader = z.infer<typeof ruleSetLoader>;
|
|
20
|
-
declare const ruleSetLoaderOptions: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>;
|
|
21
|
-
export type RuleSetLoaderOptions = z.infer<typeof ruleSetLoaderOptions>;
|
|
22
|
-
declare const ruleSetLoaderWithOptions: z.ZodObject<{
|
|
23
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
24
|
-
loader: z.ZodString;
|
|
25
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
26
|
-
}, "strict", z.ZodTypeAny, {
|
|
27
|
-
loader: string;
|
|
28
|
-
options?: string | Record<string, any> | undefined;
|
|
29
|
-
ident?: string | undefined;
|
|
30
|
-
}, {
|
|
31
|
-
loader: string;
|
|
32
|
-
options?: string | Record<string, any> | undefined;
|
|
33
|
-
ident?: string | undefined;
|
|
34
|
-
}>;
|
|
35
|
-
export type RuleSetLoaderWithOptions = z.infer<typeof ruleSetLoaderWithOptions>;
|
|
36
|
-
declare const ruleSetUseItem: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
37
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
38
|
-
loader: z.ZodString;
|
|
39
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
40
|
-
}, "strict", z.ZodTypeAny, {
|
|
41
|
-
loader: string;
|
|
42
|
-
options?: string | Record<string, any> | undefined;
|
|
43
|
-
ident?: string | undefined;
|
|
44
|
-
}, {
|
|
45
|
-
loader: string;
|
|
46
|
-
options?: string | Record<string, any> | undefined;
|
|
47
|
-
ident?: string | undefined;
|
|
48
|
-
}>]>;
|
|
49
|
-
export type RuleSetUseItem = z.infer<typeof ruleSetUseItem>;
|
|
50
|
-
declare const ruleSetUse: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
51
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
52
|
-
loader: z.ZodString;
|
|
53
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
54
|
-
}, "strict", z.ZodTypeAny, {
|
|
55
|
-
loader: string;
|
|
56
|
-
options?: string | Record<string, any> | undefined;
|
|
57
|
-
ident?: string | undefined;
|
|
58
|
-
}, {
|
|
59
|
-
loader: string;
|
|
60
|
-
options?: string | Record<string, any> | undefined;
|
|
61
|
-
ident?: string | undefined;
|
|
62
|
-
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
63
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
64
|
-
loader: z.ZodString;
|
|
65
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
66
|
-
}, "strict", z.ZodTypeAny, {
|
|
67
|
-
loader: string;
|
|
68
|
-
options?: string | Record<string, any> | undefined;
|
|
69
|
-
ident?: string | undefined;
|
|
70
|
-
}, {
|
|
71
|
-
loader: string;
|
|
72
|
-
options?: string | Record<string, any> | undefined;
|
|
73
|
-
ident?: string | undefined;
|
|
74
|
-
}>]>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodType<RawFuncUseCtx, z.ZodTypeDef, RawFuncUseCtx>], z.ZodUnknown>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
75
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
76
|
-
loader: z.ZodString;
|
|
77
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
78
|
-
}, "strict", z.ZodTypeAny, {
|
|
79
|
-
loader: string;
|
|
80
|
-
options?: string | Record<string, any> | undefined;
|
|
81
|
-
ident?: string | undefined;
|
|
82
|
-
}, {
|
|
83
|
-
loader: string;
|
|
84
|
-
options?: string | Record<string, any> | undefined;
|
|
85
|
-
ident?: string | undefined;
|
|
86
|
-
}>]>, "many">>]>;
|
|
87
|
-
export type RuleSetUse = z.infer<typeof ruleSetUse>;
|
|
88
|
-
declare const baseRuleSetRule: z.ZodObject<{
|
|
89
|
-
test: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
90
|
-
exclude: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
91
|
-
include: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
92
|
-
issuer: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
93
|
-
issuerLayer: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
94
|
-
dependency: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
95
|
-
resource: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
96
|
-
resourceFragment: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
97
|
-
resourceQuery: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
98
|
-
scheme: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
99
|
-
mimetype: z.ZodOptional<z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>;
|
|
100
|
-
descriptionData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>>;
|
|
101
|
-
with: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<RuleSetCondition, z.ZodTypeDef, RuleSetCondition>>>;
|
|
102
|
-
type: z.ZodOptional<z.ZodString>;
|
|
103
|
-
layer: z.ZodOptional<z.ZodString>;
|
|
104
|
-
loader: z.ZodOptional<z.ZodString>;
|
|
105
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
106
|
-
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
107
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
108
|
-
loader: z.ZodString;
|
|
109
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
110
|
-
}, "strict", z.ZodTypeAny, {
|
|
111
|
-
loader: string;
|
|
112
|
-
options?: string | Record<string, any> | undefined;
|
|
113
|
-
ident?: string | undefined;
|
|
114
|
-
}, {
|
|
115
|
-
loader: string;
|
|
116
|
-
options?: string | Record<string, any> | undefined;
|
|
117
|
-
ident?: string | undefined;
|
|
118
|
-
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
119
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
120
|
-
loader: z.ZodString;
|
|
121
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
122
|
-
}, "strict", z.ZodTypeAny, {
|
|
123
|
-
loader: string;
|
|
124
|
-
options?: string | Record<string, any> | undefined;
|
|
125
|
-
ident?: string | undefined;
|
|
126
|
-
}, {
|
|
127
|
-
loader: string;
|
|
128
|
-
options?: string | Record<string, any> | undefined;
|
|
129
|
-
ident?: string | undefined;
|
|
130
|
-
}>]>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodType<RawFuncUseCtx, z.ZodTypeDef, RawFuncUseCtx>], z.ZodUnknown>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
131
|
-
ident: z.ZodOptional<z.ZodString>;
|
|
132
|
-
loader: z.ZodString;
|
|
133
|
-
options: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
134
|
-
}, "strict", z.ZodTypeAny, {
|
|
135
|
-
loader: string;
|
|
136
|
-
options?: string | Record<string, any> | undefined;
|
|
137
|
-
ident?: string | undefined;
|
|
138
|
-
}, {
|
|
139
|
-
loader: string;
|
|
140
|
-
options?: string | Record<string, any> | undefined;
|
|
141
|
-
ident?: string | undefined;
|
|
142
|
-
}>]>, "many">>]>>;
|
|
143
|
-
parser: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
144
|
-
generator: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
145
|
-
resolve: z.ZodOptional<z.ZodType<t.ResolveOptions, z.ZodTypeDef, t.ResolveOptions>>;
|
|
146
|
-
sideEffects: z.ZodOptional<z.ZodBoolean>;
|
|
147
|
-
enforce: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pre">, z.ZodLiteral<"post">]>>;
|
|
148
|
-
}, "strict", z.ZodTypeAny, {
|
|
149
|
-
type?: string | undefined;
|
|
150
|
-
resource?: RuleSetCondition | undefined;
|
|
151
|
-
layer?: string | undefined;
|
|
152
|
-
options?: string | Record<string, any> | undefined;
|
|
153
|
-
loader?: string | undefined;
|
|
154
|
-
test?: RuleSetCondition | undefined;
|
|
155
|
-
exclude?: RuleSetCondition | undefined;
|
|
156
|
-
include?: RuleSetCondition | undefined;
|
|
157
|
-
issuer?: RuleSetCondition | undefined;
|
|
158
|
-
issuerLayer?: RuleSetCondition | undefined;
|
|
159
|
-
dependency?: RuleSetCondition | undefined;
|
|
160
|
-
resourceFragment?: RuleSetCondition | undefined;
|
|
161
|
-
resourceQuery?: RuleSetCondition | undefined;
|
|
162
|
-
scheme?: RuleSetCondition | undefined;
|
|
163
|
-
mimetype?: RuleSetCondition | undefined;
|
|
164
|
-
descriptionData?: Record<string, RuleSetCondition> | undefined;
|
|
165
|
-
with?: Record<string, RuleSetCondition> | undefined;
|
|
166
|
-
use?: string | {
|
|
167
|
-
loader: string;
|
|
168
|
-
options?: string | Record<string, any> | undefined;
|
|
169
|
-
ident?: string | undefined;
|
|
170
|
-
} | (string | {
|
|
171
|
-
loader: string;
|
|
172
|
-
options?: string | Record<string, any> | undefined;
|
|
173
|
-
ident?: string | undefined;
|
|
174
|
-
})[] | ((args_0: RawFuncUseCtx, ...args_1: unknown[]) => (string | {
|
|
175
|
-
loader: string;
|
|
176
|
-
options?: string | Record<string, any> | undefined;
|
|
177
|
-
ident?: string | undefined;
|
|
178
|
-
})[]) | undefined;
|
|
179
|
-
parser?: Record<string, any> | undefined;
|
|
180
|
-
generator?: Record<string, any> | undefined;
|
|
181
|
-
resolve?: t.ResolveOptions | undefined;
|
|
182
|
-
sideEffects?: boolean | undefined;
|
|
183
|
-
enforce?: "pre" | "post" | undefined;
|
|
184
|
-
}, {
|
|
185
|
-
type?: string | undefined;
|
|
186
|
-
resource?: RuleSetCondition | undefined;
|
|
187
|
-
layer?: string | undefined;
|
|
188
|
-
options?: string | Record<string, any> | undefined;
|
|
189
|
-
loader?: string | undefined;
|
|
190
|
-
test?: RuleSetCondition | undefined;
|
|
191
|
-
exclude?: RuleSetCondition | undefined;
|
|
192
|
-
include?: RuleSetCondition | undefined;
|
|
193
|
-
issuer?: RuleSetCondition | undefined;
|
|
194
|
-
issuerLayer?: RuleSetCondition | undefined;
|
|
195
|
-
dependency?: RuleSetCondition | undefined;
|
|
196
|
-
resourceFragment?: RuleSetCondition | undefined;
|
|
197
|
-
resourceQuery?: RuleSetCondition | undefined;
|
|
198
|
-
scheme?: RuleSetCondition | undefined;
|
|
199
|
-
mimetype?: RuleSetCondition | undefined;
|
|
200
|
-
descriptionData?: Record<string, RuleSetCondition> | undefined;
|
|
201
|
-
with?: Record<string, RuleSetCondition> | undefined;
|
|
202
|
-
use?: string | {
|
|
203
|
-
loader: string;
|
|
204
|
-
options?: string | Record<string, any> | undefined;
|
|
205
|
-
ident?: string | undefined;
|
|
206
|
-
} | (string | {
|
|
207
|
-
loader: string;
|
|
208
|
-
options?: string | Record<string, any> | undefined;
|
|
209
|
-
ident?: string | undefined;
|
|
210
|
-
})[] | ((args_0: RawFuncUseCtx, ...args_1: unknown[]) => (string | {
|
|
211
|
-
loader: string;
|
|
212
|
-
options?: string | Record<string, any> | undefined;
|
|
213
|
-
ident?: string | undefined;
|
|
214
|
-
})[]) | undefined;
|
|
215
|
-
parser?: Record<string, any> | undefined;
|
|
216
|
-
generator?: Record<string, any> | undefined;
|
|
217
|
-
resolve?: t.ResolveOptions | undefined;
|
|
218
|
-
sideEffects?: boolean | undefined;
|
|
219
|
-
enforce?: "pre" | "post" | undefined;
|
|
220
|
-
}>;
|
|
221
|
-
export type RuleSetRule = z.infer<typeof baseRuleSetRule> & {
|
|
222
|
-
oneOf?: RuleSetRule[];
|
|
223
|
-
rules?: RuleSetRule[];
|
|
224
|
-
};
|
|
225
|
-
declare const ruleSetRules: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<RuleSetRule, z.ZodTypeDef, RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">;
|
|
226
|
-
export type RuleSetRules = z.infer<typeof ruleSetRules>;
|
|
227
|
-
declare const assetParserDataUrlOptions: z.ZodObject<{
|
|
228
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
229
|
-
}, "strict", z.ZodTypeAny, {
|
|
230
|
-
maxSize?: number | undefined;
|
|
231
|
-
}, {
|
|
232
|
-
maxSize?: number | undefined;
|
|
233
|
-
}>;
|
|
234
|
-
export type AssetParserDataUrlOptions = z.infer<typeof assetParserDataUrlOptions>;
|
|
235
|
-
declare const assetParserDataUrl: z.ZodObject<{
|
|
236
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
237
|
-
}, "strict", z.ZodTypeAny, {
|
|
238
|
-
maxSize?: number | undefined;
|
|
239
|
-
}, {
|
|
240
|
-
maxSize?: number | undefined;
|
|
241
|
-
}>;
|
|
242
|
-
export type AssetParserDataUrl = z.infer<typeof assetParserDataUrl>;
|
|
243
|
-
declare const assetParserOptions: z.ZodObject<{
|
|
244
|
-
dataUrlCondition: z.ZodOptional<z.ZodObject<{
|
|
245
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
246
|
-
}, "strict", z.ZodTypeAny, {
|
|
247
|
-
maxSize?: number | undefined;
|
|
248
|
-
}, {
|
|
249
|
-
maxSize?: number | undefined;
|
|
250
|
-
}>>;
|
|
251
|
-
}, "strict", z.ZodTypeAny, {
|
|
252
|
-
dataUrlCondition?: {
|
|
253
|
-
maxSize?: number | undefined;
|
|
254
|
-
} | undefined;
|
|
255
|
-
}, {
|
|
256
|
-
dataUrlCondition?: {
|
|
257
|
-
maxSize?: number | undefined;
|
|
258
|
-
} | undefined;
|
|
259
|
-
}>;
|
|
260
|
-
export type AssetParserOptions = z.infer<typeof assetParserOptions>;
|
|
261
|
-
declare const cssParserNamedExports: z.ZodBoolean;
|
|
262
|
-
export type CssParserNamedExports = z.infer<typeof cssParserNamedExports>;
|
|
263
|
-
declare const cssParserOptions: z.ZodObject<{
|
|
264
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
265
|
-
}, "strict", z.ZodTypeAny, {
|
|
266
|
-
namedExports?: boolean | undefined;
|
|
267
|
-
}, {
|
|
268
|
-
namedExports?: boolean | undefined;
|
|
269
|
-
}>;
|
|
270
|
-
export type CssParserOptions = z.infer<typeof cssParserOptions>;
|
|
271
|
-
declare const cssAutoParserOptions: z.ZodObject<{
|
|
272
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
273
|
-
}, "strict", z.ZodTypeAny, {
|
|
274
|
-
namedExports?: boolean | undefined;
|
|
275
|
-
}, {
|
|
276
|
-
namedExports?: boolean | undefined;
|
|
277
|
-
}>;
|
|
278
|
-
export type CssAutoParserOptions = z.infer<typeof cssAutoParserOptions>;
|
|
279
|
-
declare const cssModuleParserOptions: z.ZodObject<{
|
|
280
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
281
|
-
}, "strict", z.ZodTypeAny, {
|
|
282
|
-
namedExports?: boolean | undefined;
|
|
283
|
-
}, {
|
|
284
|
-
namedExports?: boolean | undefined;
|
|
285
|
-
}>;
|
|
286
|
-
export type CssModuleParserOptions = z.infer<typeof cssModuleParserOptions>;
|
|
287
|
-
declare const javascriptParserOptions: z.ZodObject<{
|
|
288
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
289
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
290
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
291
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
292
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
293
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
294
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
295
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
296
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
297
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
298
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
299
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
300
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
301
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
302
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
303
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
304
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
305
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
306
|
-
}, "strict", z.ZodTypeAny, {
|
|
307
|
-
url?: boolean | "relative" | undefined;
|
|
308
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
309
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
310
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
311
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
312
|
-
importMeta?: boolean | undefined;
|
|
313
|
-
exprContextCritical?: boolean | undefined;
|
|
314
|
-
wrappedContextCritical?: boolean | undefined;
|
|
315
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
316
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
317
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
318
|
-
strictExportPresence?: boolean | undefined;
|
|
319
|
-
worker?: boolean | string[] | undefined;
|
|
320
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
321
|
-
requireAsExpression?: boolean | undefined;
|
|
322
|
-
requireDynamic?: boolean | undefined;
|
|
323
|
-
requireResolve?: boolean | undefined;
|
|
324
|
-
importDynamic?: boolean | undefined;
|
|
325
|
-
}, {
|
|
326
|
-
url?: boolean | "relative" | undefined;
|
|
327
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
328
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
329
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
330
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
331
|
-
importMeta?: boolean | undefined;
|
|
332
|
-
exprContextCritical?: boolean | undefined;
|
|
333
|
-
wrappedContextCritical?: boolean | undefined;
|
|
334
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
335
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
336
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
337
|
-
strictExportPresence?: boolean | undefined;
|
|
338
|
-
worker?: boolean | string[] | undefined;
|
|
339
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
340
|
-
requireAsExpression?: boolean | undefined;
|
|
341
|
-
requireDynamic?: boolean | undefined;
|
|
342
|
-
requireResolve?: boolean | undefined;
|
|
343
|
-
importDynamic?: boolean | undefined;
|
|
344
|
-
}>;
|
|
345
|
-
export type JavascriptParserOptions = z.infer<typeof javascriptParserOptions>;
|
|
346
|
-
declare const parserOptionsByModuleTypeKnown: z.ZodObject<{
|
|
347
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
348
|
-
dataUrlCondition: z.ZodOptional<z.ZodObject<{
|
|
349
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
350
|
-
}, "strict", z.ZodTypeAny, {
|
|
351
|
-
maxSize?: number | undefined;
|
|
352
|
-
}, {
|
|
353
|
-
maxSize?: number | undefined;
|
|
354
|
-
}>>;
|
|
355
|
-
}, "strict", z.ZodTypeAny, {
|
|
356
|
-
dataUrlCondition?: {
|
|
357
|
-
maxSize?: number | undefined;
|
|
358
|
-
} | undefined;
|
|
359
|
-
}, {
|
|
360
|
-
dataUrlCondition?: {
|
|
361
|
-
maxSize?: number | undefined;
|
|
362
|
-
} | undefined;
|
|
363
|
-
}>>;
|
|
364
|
-
css: z.ZodOptional<z.ZodObject<{
|
|
365
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
366
|
-
}, "strict", z.ZodTypeAny, {
|
|
367
|
-
namedExports?: boolean | undefined;
|
|
368
|
-
}, {
|
|
369
|
-
namedExports?: boolean | undefined;
|
|
370
|
-
}>>;
|
|
371
|
-
"css/auto": z.ZodOptional<z.ZodObject<{
|
|
372
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
373
|
-
}, "strict", z.ZodTypeAny, {
|
|
374
|
-
namedExports?: boolean | undefined;
|
|
375
|
-
}, {
|
|
376
|
-
namedExports?: boolean | undefined;
|
|
377
|
-
}>>;
|
|
378
|
-
"css/module": z.ZodOptional<z.ZodObject<{
|
|
379
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
380
|
-
}, "strict", z.ZodTypeAny, {
|
|
381
|
-
namedExports?: boolean | undefined;
|
|
382
|
-
}, {
|
|
383
|
-
namedExports?: boolean | undefined;
|
|
384
|
-
}>>;
|
|
385
|
-
javascript: z.ZodOptional<z.ZodObject<{
|
|
386
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
387
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
388
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
389
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
390
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
391
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
392
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
393
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
394
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
395
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
396
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
397
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
398
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
399
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
400
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
401
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
402
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
403
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
404
|
-
}, "strict", z.ZodTypeAny, {
|
|
405
|
-
url?: boolean | "relative" | undefined;
|
|
406
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
407
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
408
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
409
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
410
|
-
importMeta?: boolean | undefined;
|
|
411
|
-
exprContextCritical?: boolean | undefined;
|
|
412
|
-
wrappedContextCritical?: boolean | undefined;
|
|
413
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
414
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
415
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
416
|
-
strictExportPresence?: boolean | undefined;
|
|
417
|
-
worker?: boolean | string[] | undefined;
|
|
418
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
419
|
-
requireAsExpression?: boolean | undefined;
|
|
420
|
-
requireDynamic?: boolean | undefined;
|
|
421
|
-
requireResolve?: boolean | undefined;
|
|
422
|
-
importDynamic?: boolean | undefined;
|
|
423
|
-
}, {
|
|
424
|
-
url?: boolean | "relative" | undefined;
|
|
425
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
426
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
427
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
428
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
429
|
-
importMeta?: boolean | undefined;
|
|
430
|
-
exprContextCritical?: boolean | undefined;
|
|
431
|
-
wrappedContextCritical?: boolean | undefined;
|
|
432
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
433
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
434
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
435
|
-
strictExportPresence?: boolean | undefined;
|
|
436
|
-
worker?: boolean | string[] | undefined;
|
|
437
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
438
|
-
requireAsExpression?: boolean | undefined;
|
|
439
|
-
requireDynamic?: boolean | undefined;
|
|
440
|
-
requireResolve?: boolean | undefined;
|
|
441
|
-
importDynamic?: boolean | undefined;
|
|
442
|
-
}>>;
|
|
443
|
-
"javascript/auto": z.ZodOptional<z.ZodObject<{
|
|
444
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
445
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
446
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
447
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
448
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
449
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
450
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
451
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
452
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
453
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
454
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
455
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
456
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
457
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
458
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
460
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
461
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
462
|
-
}, "strict", z.ZodTypeAny, {
|
|
463
|
-
url?: boolean | "relative" | undefined;
|
|
464
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
465
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
466
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
467
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
468
|
-
importMeta?: boolean | undefined;
|
|
469
|
-
exprContextCritical?: boolean | undefined;
|
|
470
|
-
wrappedContextCritical?: boolean | undefined;
|
|
471
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
472
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
473
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
474
|
-
strictExportPresence?: boolean | undefined;
|
|
475
|
-
worker?: boolean | string[] | undefined;
|
|
476
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
477
|
-
requireAsExpression?: boolean | undefined;
|
|
478
|
-
requireDynamic?: boolean | undefined;
|
|
479
|
-
requireResolve?: boolean | undefined;
|
|
480
|
-
importDynamic?: boolean | undefined;
|
|
481
|
-
}, {
|
|
482
|
-
url?: boolean | "relative" | undefined;
|
|
483
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
484
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
485
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
486
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
487
|
-
importMeta?: boolean | undefined;
|
|
488
|
-
exprContextCritical?: boolean | undefined;
|
|
489
|
-
wrappedContextCritical?: boolean | undefined;
|
|
490
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
491
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
492
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
493
|
-
strictExportPresence?: boolean | undefined;
|
|
494
|
-
worker?: boolean | string[] | undefined;
|
|
495
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
496
|
-
requireAsExpression?: boolean | undefined;
|
|
497
|
-
requireDynamic?: boolean | undefined;
|
|
498
|
-
requireResolve?: boolean | undefined;
|
|
499
|
-
importDynamic?: boolean | undefined;
|
|
500
|
-
}>>;
|
|
501
|
-
"javascript/dynamic": z.ZodOptional<z.ZodObject<{
|
|
502
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
503
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
504
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
505
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
506
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
507
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
508
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
509
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
510
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
511
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
512
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
513
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
514
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
515
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
516
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
517
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
518
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
519
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
520
|
-
}, "strict", z.ZodTypeAny, {
|
|
521
|
-
url?: boolean | "relative" | undefined;
|
|
522
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
523
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
524
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
525
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
526
|
-
importMeta?: boolean | undefined;
|
|
527
|
-
exprContextCritical?: boolean | undefined;
|
|
528
|
-
wrappedContextCritical?: boolean | undefined;
|
|
529
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
530
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
531
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
532
|
-
strictExportPresence?: boolean | undefined;
|
|
533
|
-
worker?: boolean | string[] | undefined;
|
|
534
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
535
|
-
requireAsExpression?: boolean | undefined;
|
|
536
|
-
requireDynamic?: boolean | undefined;
|
|
537
|
-
requireResolve?: boolean | undefined;
|
|
538
|
-
importDynamic?: boolean | undefined;
|
|
539
|
-
}, {
|
|
540
|
-
url?: boolean | "relative" | undefined;
|
|
541
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
542
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
543
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
544
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
545
|
-
importMeta?: boolean | undefined;
|
|
546
|
-
exprContextCritical?: boolean | undefined;
|
|
547
|
-
wrappedContextCritical?: boolean | undefined;
|
|
548
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
549
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
550
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
551
|
-
strictExportPresence?: boolean | undefined;
|
|
552
|
-
worker?: boolean | string[] | undefined;
|
|
553
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
554
|
-
requireAsExpression?: boolean | undefined;
|
|
555
|
-
requireDynamic?: boolean | undefined;
|
|
556
|
-
requireResolve?: boolean | undefined;
|
|
557
|
-
importDynamic?: boolean | undefined;
|
|
558
|
-
}>>;
|
|
559
|
-
"javascript/esm": z.ZodOptional<z.ZodObject<{
|
|
560
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
561
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
562
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
563
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
564
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
565
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
566
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
567
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
568
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
569
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
570
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
571
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
572
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
573
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
574
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
575
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
576
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
577
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
578
|
-
}, "strict", z.ZodTypeAny, {
|
|
579
|
-
url?: boolean | "relative" | undefined;
|
|
580
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
581
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
582
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
583
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
584
|
-
importMeta?: boolean | undefined;
|
|
585
|
-
exprContextCritical?: boolean | undefined;
|
|
586
|
-
wrappedContextCritical?: boolean | undefined;
|
|
587
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
588
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
589
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
590
|
-
strictExportPresence?: boolean | undefined;
|
|
591
|
-
worker?: boolean | string[] | undefined;
|
|
592
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
593
|
-
requireAsExpression?: boolean | undefined;
|
|
594
|
-
requireDynamic?: boolean | undefined;
|
|
595
|
-
requireResolve?: boolean | undefined;
|
|
596
|
-
importDynamic?: boolean | undefined;
|
|
597
|
-
}, {
|
|
598
|
-
url?: boolean | "relative" | undefined;
|
|
599
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
600
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
601
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
602
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
603
|
-
importMeta?: boolean | undefined;
|
|
604
|
-
exprContextCritical?: boolean | undefined;
|
|
605
|
-
wrappedContextCritical?: boolean | undefined;
|
|
606
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
607
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
608
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
609
|
-
strictExportPresence?: boolean | undefined;
|
|
610
|
-
worker?: boolean | string[] | undefined;
|
|
611
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
612
|
-
requireAsExpression?: boolean | undefined;
|
|
613
|
-
requireDynamic?: boolean | undefined;
|
|
614
|
-
requireResolve?: boolean | undefined;
|
|
615
|
-
importDynamic?: boolean | undefined;
|
|
616
|
-
}>>;
|
|
617
|
-
}, "strict", z.ZodTypeAny, {
|
|
618
|
-
javascript?: {
|
|
619
|
-
url?: boolean | "relative" | undefined;
|
|
620
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
621
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
622
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
623
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
624
|
-
importMeta?: boolean | undefined;
|
|
625
|
-
exprContextCritical?: boolean | undefined;
|
|
626
|
-
wrappedContextCritical?: boolean | undefined;
|
|
627
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
628
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
629
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
630
|
-
strictExportPresence?: boolean | undefined;
|
|
631
|
-
worker?: boolean | string[] | undefined;
|
|
632
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
633
|
-
requireAsExpression?: boolean | undefined;
|
|
634
|
-
requireDynamic?: boolean | undefined;
|
|
635
|
-
requireResolve?: boolean | undefined;
|
|
636
|
-
importDynamic?: boolean | undefined;
|
|
637
|
-
} | undefined;
|
|
638
|
-
css?: {
|
|
639
|
-
namedExports?: boolean | undefined;
|
|
640
|
-
} | undefined;
|
|
641
|
-
"css/auto"?: {
|
|
642
|
-
namedExports?: boolean | undefined;
|
|
643
|
-
} | undefined;
|
|
644
|
-
"css/module"?: {
|
|
645
|
-
namedExports?: boolean | undefined;
|
|
646
|
-
} | undefined;
|
|
647
|
-
asset?: {
|
|
648
|
-
dataUrlCondition?: {
|
|
649
|
-
maxSize?: number | undefined;
|
|
650
|
-
} | undefined;
|
|
651
|
-
} | undefined;
|
|
652
|
-
"javascript/auto"?: {
|
|
653
|
-
url?: boolean | "relative" | undefined;
|
|
654
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
655
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
656
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
657
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
658
|
-
importMeta?: boolean | undefined;
|
|
659
|
-
exprContextCritical?: boolean | undefined;
|
|
660
|
-
wrappedContextCritical?: boolean | undefined;
|
|
661
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
662
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
663
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
664
|
-
strictExportPresence?: boolean | undefined;
|
|
665
|
-
worker?: boolean | string[] | undefined;
|
|
666
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
667
|
-
requireAsExpression?: boolean | undefined;
|
|
668
|
-
requireDynamic?: boolean | undefined;
|
|
669
|
-
requireResolve?: boolean | undefined;
|
|
670
|
-
importDynamic?: boolean | undefined;
|
|
671
|
-
} | undefined;
|
|
672
|
-
"javascript/dynamic"?: {
|
|
673
|
-
url?: boolean | "relative" | undefined;
|
|
674
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
675
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
676
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
677
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
678
|
-
importMeta?: boolean | undefined;
|
|
679
|
-
exprContextCritical?: boolean | undefined;
|
|
680
|
-
wrappedContextCritical?: boolean | undefined;
|
|
681
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
682
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
683
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
684
|
-
strictExportPresence?: boolean | undefined;
|
|
685
|
-
worker?: boolean | string[] | undefined;
|
|
686
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
687
|
-
requireAsExpression?: boolean | undefined;
|
|
688
|
-
requireDynamic?: boolean | undefined;
|
|
689
|
-
requireResolve?: boolean | undefined;
|
|
690
|
-
importDynamic?: boolean | undefined;
|
|
691
|
-
} | undefined;
|
|
692
|
-
"javascript/esm"?: {
|
|
693
|
-
url?: boolean | "relative" | undefined;
|
|
694
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
695
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
696
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
697
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
698
|
-
importMeta?: boolean | undefined;
|
|
699
|
-
exprContextCritical?: boolean | undefined;
|
|
700
|
-
wrappedContextCritical?: boolean | undefined;
|
|
701
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
702
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
703
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
704
|
-
strictExportPresence?: boolean | undefined;
|
|
705
|
-
worker?: boolean | string[] | undefined;
|
|
706
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
707
|
-
requireAsExpression?: boolean | undefined;
|
|
708
|
-
requireDynamic?: boolean | undefined;
|
|
709
|
-
requireResolve?: boolean | undefined;
|
|
710
|
-
importDynamic?: boolean | undefined;
|
|
711
|
-
} | undefined;
|
|
712
|
-
}, {
|
|
713
|
-
javascript?: {
|
|
714
|
-
url?: boolean | "relative" | undefined;
|
|
715
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
716
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
717
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
718
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
719
|
-
importMeta?: boolean | undefined;
|
|
720
|
-
exprContextCritical?: boolean | undefined;
|
|
721
|
-
wrappedContextCritical?: boolean | undefined;
|
|
722
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
723
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
724
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
725
|
-
strictExportPresence?: boolean | undefined;
|
|
726
|
-
worker?: boolean | string[] | undefined;
|
|
727
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
728
|
-
requireAsExpression?: boolean | undefined;
|
|
729
|
-
requireDynamic?: boolean | undefined;
|
|
730
|
-
requireResolve?: boolean | undefined;
|
|
731
|
-
importDynamic?: boolean | undefined;
|
|
732
|
-
} | undefined;
|
|
733
|
-
css?: {
|
|
734
|
-
namedExports?: boolean | undefined;
|
|
735
|
-
} | undefined;
|
|
736
|
-
"css/auto"?: {
|
|
737
|
-
namedExports?: boolean | undefined;
|
|
738
|
-
} | undefined;
|
|
739
|
-
"css/module"?: {
|
|
740
|
-
namedExports?: boolean | undefined;
|
|
741
|
-
} | undefined;
|
|
742
|
-
asset?: {
|
|
743
|
-
dataUrlCondition?: {
|
|
744
|
-
maxSize?: number | undefined;
|
|
745
|
-
} | undefined;
|
|
746
|
-
} | undefined;
|
|
747
|
-
"javascript/auto"?: {
|
|
748
|
-
url?: boolean | "relative" | undefined;
|
|
749
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
750
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
751
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
752
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
753
|
-
importMeta?: boolean | undefined;
|
|
754
|
-
exprContextCritical?: boolean | undefined;
|
|
755
|
-
wrappedContextCritical?: boolean | undefined;
|
|
756
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
757
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
758
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
759
|
-
strictExportPresence?: boolean | undefined;
|
|
760
|
-
worker?: boolean | string[] | undefined;
|
|
761
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
762
|
-
requireAsExpression?: boolean | undefined;
|
|
763
|
-
requireDynamic?: boolean | undefined;
|
|
764
|
-
requireResolve?: boolean | undefined;
|
|
765
|
-
importDynamic?: boolean | undefined;
|
|
766
|
-
} | undefined;
|
|
767
|
-
"javascript/dynamic"?: {
|
|
768
|
-
url?: boolean | "relative" | undefined;
|
|
769
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
770
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
771
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
772
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
773
|
-
importMeta?: boolean | undefined;
|
|
774
|
-
exprContextCritical?: boolean | undefined;
|
|
775
|
-
wrappedContextCritical?: boolean | undefined;
|
|
776
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
777
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
778
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
779
|
-
strictExportPresence?: boolean | undefined;
|
|
780
|
-
worker?: boolean | string[] | undefined;
|
|
781
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
782
|
-
requireAsExpression?: boolean | undefined;
|
|
783
|
-
requireDynamic?: boolean | undefined;
|
|
784
|
-
requireResolve?: boolean | undefined;
|
|
785
|
-
importDynamic?: boolean | undefined;
|
|
786
|
-
} | undefined;
|
|
787
|
-
"javascript/esm"?: {
|
|
788
|
-
url?: boolean | "relative" | undefined;
|
|
789
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
790
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
791
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
792
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
793
|
-
importMeta?: boolean | undefined;
|
|
794
|
-
exprContextCritical?: boolean | undefined;
|
|
795
|
-
wrappedContextCritical?: boolean | undefined;
|
|
796
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
797
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
798
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
799
|
-
strictExportPresence?: boolean | undefined;
|
|
800
|
-
worker?: boolean | string[] | undefined;
|
|
801
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
802
|
-
requireAsExpression?: boolean | undefined;
|
|
803
|
-
requireDynamic?: boolean | undefined;
|
|
804
|
-
requireResolve?: boolean | undefined;
|
|
805
|
-
importDynamic?: boolean | undefined;
|
|
806
|
-
} | undefined;
|
|
807
|
-
}>;
|
|
808
|
-
export type ParserOptionsByModuleTypeKnown = z.infer<typeof parserOptionsByModuleTypeKnown>;
|
|
809
|
-
declare const parserOptionsByModuleTypeUnknown: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
810
|
-
export type ParserOptionsByModuleTypeUnknown = z.infer<typeof parserOptionsByModuleTypeUnknown>;
|
|
811
|
-
declare const parserOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
812
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
813
|
-
dataUrlCondition: z.ZodOptional<z.ZodObject<{
|
|
814
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
815
|
-
}, "strict", z.ZodTypeAny, {
|
|
816
|
-
maxSize?: number | undefined;
|
|
817
|
-
}, {
|
|
818
|
-
maxSize?: number | undefined;
|
|
819
|
-
}>>;
|
|
820
|
-
}, "strict", z.ZodTypeAny, {
|
|
821
|
-
dataUrlCondition?: {
|
|
822
|
-
maxSize?: number | undefined;
|
|
823
|
-
} | undefined;
|
|
824
|
-
}, {
|
|
825
|
-
dataUrlCondition?: {
|
|
826
|
-
maxSize?: number | undefined;
|
|
827
|
-
} | undefined;
|
|
828
|
-
}>>;
|
|
829
|
-
css: z.ZodOptional<z.ZodObject<{
|
|
830
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
831
|
-
}, "strict", z.ZodTypeAny, {
|
|
832
|
-
namedExports?: boolean | undefined;
|
|
833
|
-
}, {
|
|
834
|
-
namedExports?: boolean | undefined;
|
|
835
|
-
}>>;
|
|
836
|
-
"css/auto": z.ZodOptional<z.ZodObject<{
|
|
837
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
838
|
-
}, "strict", z.ZodTypeAny, {
|
|
839
|
-
namedExports?: boolean | undefined;
|
|
840
|
-
}, {
|
|
841
|
-
namedExports?: boolean | undefined;
|
|
842
|
-
}>>;
|
|
843
|
-
"css/module": z.ZodOptional<z.ZodObject<{
|
|
844
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
845
|
-
}, "strict", z.ZodTypeAny, {
|
|
846
|
-
namedExports?: boolean | undefined;
|
|
847
|
-
}, {
|
|
848
|
-
namedExports?: boolean | undefined;
|
|
849
|
-
}>>;
|
|
850
|
-
javascript: z.ZodOptional<z.ZodObject<{
|
|
851
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
852
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
853
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
854
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
855
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
856
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
857
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
858
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
859
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
860
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
861
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
862
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
863
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
864
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
865
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
866
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
867
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
868
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
869
|
-
}, "strict", z.ZodTypeAny, {
|
|
870
|
-
url?: boolean | "relative" | undefined;
|
|
871
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
872
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
873
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
874
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
875
|
-
importMeta?: boolean | undefined;
|
|
876
|
-
exprContextCritical?: boolean | undefined;
|
|
877
|
-
wrappedContextCritical?: boolean | undefined;
|
|
878
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
879
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
880
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
881
|
-
strictExportPresence?: boolean | undefined;
|
|
882
|
-
worker?: boolean | string[] | undefined;
|
|
883
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
884
|
-
requireAsExpression?: boolean | undefined;
|
|
885
|
-
requireDynamic?: boolean | undefined;
|
|
886
|
-
requireResolve?: boolean | undefined;
|
|
887
|
-
importDynamic?: boolean | undefined;
|
|
888
|
-
}, {
|
|
889
|
-
url?: boolean | "relative" | undefined;
|
|
890
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
891
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
892
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
893
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
894
|
-
importMeta?: boolean | undefined;
|
|
895
|
-
exprContextCritical?: boolean | undefined;
|
|
896
|
-
wrappedContextCritical?: boolean | undefined;
|
|
897
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
898
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
899
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
900
|
-
strictExportPresence?: boolean | undefined;
|
|
901
|
-
worker?: boolean | string[] | undefined;
|
|
902
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
903
|
-
requireAsExpression?: boolean | undefined;
|
|
904
|
-
requireDynamic?: boolean | undefined;
|
|
905
|
-
requireResolve?: boolean | undefined;
|
|
906
|
-
importDynamic?: boolean | undefined;
|
|
907
|
-
}>>;
|
|
908
|
-
"javascript/auto": z.ZodOptional<z.ZodObject<{
|
|
909
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
910
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
911
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
912
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
913
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
915
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
916
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
917
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
918
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
919
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
920
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
921
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
922
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
923
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
924
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
925
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
926
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
927
|
-
}, "strict", z.ZodTypeAny, {
|
|
928
|
-
url?: boolean | "relative" | undefined;
|
|
929
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
930
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
931
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
932
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
933
|
-
importMeta?: boolean | undefined;
|
|
934
|
-
exprContextCritical?: boolean | undefined;
|
|
935
|
-
wrappedContextCritical?: boolean | undefined;
|
|
936
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
937
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
938
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
939
|
-
strictExportPresence?: boolean | undefined;
|
|
940
|
-
worker?: boolean | string[] | undefined;
|
|
941
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
942
|
-
requireAsExpression?: boolean | undefined;
|
|
943
|
-
requireDynamic?: boolean | undefined;
|
|
944
|
-
requireResolve?: boolean | undefined;
|
|
945
|
-
importDynamic?: boolean | undefined;
|
|
946
|
-
}, {
|
|
947
|
-
url?: boolean | "relative" | undefined;
|
|
948
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
949
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
950
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
951
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
952
|
-
importMeta?: boolean | undefined;
|
|
953
|
-
exprContextCritical?: boolean | undefined;
|
|
954
|
-
wrappedContextCritical?: boolean | undefined;
|
|
955
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
956
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
957
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
958
|
-
strictExportPresence?: boolean | undefined;
|
|
959
|
-
worker?: boolean | string[] | undefined;
|
|
960
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
961
|
-
requireAsExpression?: boolean | undefined;
|
|
962
|
-
requireDynamic?: boolean | undefined;
|
|
963
|
-
requireResolve?: boolean | undefined;
|
|
964
|
-
importDynamic?: boolean | undefined;
|
|
965
|
-
}>>;
|
|
966
|
-
"javascript/dynamic": z.ZodOptional<z.ZodObject<{
|
|
967
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
968
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
969
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
970
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
971
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
972
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
973
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
974
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
975
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
976
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
977
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
978
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
979
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
980
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
981
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
982
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
983
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
984
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
985
|
-
}, "strict", z.ZodTypeAny, {
|
|
986
|
-
url?: boolean | "relative" | undefined;
|
|
987
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
988
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
989
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
990
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
991
|
-
importMeta?: boolean | undefined;
|
|
992
|
-
exprContextCritical?: boolean | undefined;
|
|
993
|
-
wrappedContextCritical?: boolean | undefined;
|
|
994
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
995
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
996
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
997
|
-
strictExportPresence?: boolean | undefined;
|
|
998
|
-
worker?: boolean | string[] | undefined;
|
|
999
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1000
|
-
requireAsExpression?: boolean | undefined;
|
|
1001
|
-
requireDynamic?: boolean | undefined;
|
|
1002
|
-
requireResolve?: boolean | undefined;
|
|
1003
|
-
importDynamic?: boolean | undefined;
|
|
1004
|
-
}, {
|
|
1005
|
-
url?: boolean | "relative" | undefined;
|
|
1006
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1007
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1008
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1009
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1010
|
-
importMeta?: boolean | undefined;
|
|
1011
|
-
exprContextCritical?: boolean | undefined;
|
|
1012
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1013
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1014
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1015
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1016
|
-
strictExportPresence?: boolean | undefined;
|
|
1017
|
-
worker?: boolean | string[] | undefined;
|
|
1018
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1019
|
-
requireAsExpression?: boolean | undefined;
|
|
1020
|
-
requireDynamic?: boolean | undefined;
|
|
1021
|
-
requireResolve?: boolean | undefined;
|
|
1022
|
-
importDynamic?: boolean | undefined;
|
|
1023
|
-
}>>;
|
|
1024
|
-
"javascript/esm": z.ZodOptional<z.ZodObject<{
|
|
1025
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1026
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1027
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1028
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1029
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
1030
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1031
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1032
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1033
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1034
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1035
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1036
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
1037
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
1038
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
1039
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
1040
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
1041
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
1042
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
1043
|
-
}, "strict", z.ZodTypeAny, {
|
|
1044
|
-
url?: boolean | "relative" | undefined;
|
|
1045
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1046
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1047
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1048
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1049
|
-
importMeta?: boolean | undefined;
|
|
1050
|
-
exprContextCritical?: boolean | undefined;
|
|
1051
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1052
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1053
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1054
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1055
|
-
strictExportPresence?: boolean | undefined;
|
|
1056
|
-
worker?: boolean | string[] | undefined;
|
|
1057
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1058
|
-
requireAsExpression?: boolean | undefined;
|
|
1059
|
-
requireDynamic?: boolean | undefined;
|
|
1060
|
-
requireResolve?: boolean | undefined;
|
|
1061
|
-
importDynamic?: boolean | undefined;
|
|
1062
|
-
}, {
|
|
1063
|
-
url?: boolean | "relative" | undefined;
|
|
1064
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1065
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1066
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1067
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1068
|
-
importMeta?: boolean | undefined;
|
|
1069
|
-
exprContextCritical?: boolean | undefined;
|
|
1070
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1071
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1072
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1073
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1074
|
-
strictExportPresence?: boolean | undefined;
|
|
1075
|
-
worker?: boolean | string[] | undefined;
|
|
1076
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1077
|
-
requireAsExpression?: boolean | undefined;
|
|
1078
|
-
requireDynamic?: boolean | undefined;
|
|
1079
|
-
requireResolve?: boolean | undefined;
|
|
1080
|
-
importDynamic?: boolean | undefined;
|
|
1081
|
-
}>>;
|
|
1082
|
-
}, "strict", z.ZodTypeAny, {
|
|
1083
|
-
javascript?: {
|
|
1084
|
-
url?: boolean | "relative" | undefined;
|
|
1085
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1086
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1087
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1088
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1089
|
-
importMeta?: boolean | undefined;
|
|
1090
|
-
exprContextCritical?: boolean | undefined;
|
|
1091
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1092
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1093
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1094
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1095
|
-
strictExportPresence?: boolean | undefined;
|
|
1096
|
-
worker?: boolean | string[] | undefined;
|
|
1097
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1098
|
-
requireAsExpression?: boolean | undefined;
|
|
1099
|
-
requireDynamic?: boolean | undefined;
|
|
1100
|
-
requireResolve?: boolean | undefined;
|
|
1101
|
-
importDynamic?: boolean | undefined;
|
|
1102
|
-
} | undefined;
|
|
1103
|
-
css?: {
|
|
1104
|
-
namedExports?: boolean | undefined;
|
|
1105
|
-
} | undefined;
|
|
1106
|
-
"css/auto"?: {
|
|
1107
|
-
namedExports?: boolean | undefined;
|
|
1108
|
-
} | undefined;
|
|
1109
|
-
"css/module"?: {
|
|
1110
|
-
namedExports?: boolean | undefined;
|
|
1111
|
-
} | undefined;
|
|
1112
|
-
asset?: {
|
|
1113
|
-
dataUrlCondition?: {
|
|
1114
|
-
maxSize?: number | undefined;
|
|
1115
|
-
} | undefined;
|
|
1116
|
-
} | undefined;
|
|
1117
|
-
"javascript/auto"?: {
|
|
1118
|
-
url?: boolean | "relative" | undefined;
|
|
1119
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1120
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1121
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1122
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1123
|
-
importMeta?: boolean | undefined;
|
|
1124
|
-
exprContextCritical?: boolean | undefined;
|
|
1125
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1126
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1127
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1128
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1129
|
-
strictExportPresence?: boolean | undefined;
|
|
1130
|
-
worker?: boolean | string[] | undefined;
|
|
1131
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1132
|
-
requireAsExpression?: boolean | undefined;
|
|
1133
|
-
requireDynamic?: boolean | undefined;
|
|
1134
|
-
requireResolve?: boolean | undefined;
|
|
1135
|
-
importDynamic?: boolean | undefined;
|
|
1136
|
-
} | undefined;
|
|
1137
|
-
"javascript/dynamic"?: {
|
|
1138
|
-
url?: boolean | "relative" | undefined;
|
|
1139
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1140
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1141
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1142
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1143
|
-
importMeta?: boolean | undefined;
|
|
1144
|
-
exprContextCritical?: boolean | undefined;
|
|
1145
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1146
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1147
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1148
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1149
|
-
strictExportPresence?: boolean | undefined;
|
|
1150
|
-
worker?: boolean | string[] | undefined;
|
|
1151
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1152
|
-
requireAsExpression?: boolean | undefined;
|
|
1153
|
-
requireDynamic?: boolean | undefined;
|
|
1154
|
-
requireResolve?: boolean | undefined;
|
|
1155
|
-
importDynamic?: boolean | undefined;
|
|
1156
|
-
} | undefined;
|
|
1157
|
-
"javascript/esm"?: {
|
|
1158
|
-
url?: boolean | "relative" | undefined;
|
|
1159
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1160
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1161
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1162
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1163
|
-
importMeta?: boolean | undefined;
|
|
1164
|
-
exprContextCritical?: boolean | undefined;
|
|
1165
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1166
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1167
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1168
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1169
|
-
strictExportPresence?: boolean | undefined;
|
|
1170
|
-
worker?: boolean | string[] | undefined;
|
|
1171
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1172
|
-
requireAsExpression?: boolean | undefined;
|
|
1173
|
-
requireDynamic?: boolean | undefined;
|
|
1174
|
-
requireResolve?: boolean | undefined;
|
|
1175
|
-
importDynamic?: boolean | undefined;
|
|
1176
|
-
} | undefined;
|
|
1177
|
-
}, {
|
|
1178
|
-
javascript?: {
|
|
1179
|
-
url?: boolean | "relative" | undefined;
|
|
1180
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1181
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1182
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1183
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1184
|
-
importMeta?: boolean | undefined;
|
|
1185
|
-
exprContextCritical?: boolean | undefined;
|
|
1186
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1187
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1188
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1189
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1190
|
-
strictExportPresence?: boolean | undefined;
|
|
1191
|
-
worker?: boolean | string[] | undefined;
|
|
1192
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1193
|
-
requireAsExpression?: boolean | undefined;
|
|
1194
|
-
requireDynamic?: boolean | undefined;
|
|
1195
|
-
requireResolve?: boolean | undefined;
|
|
1196
|
-
importDynamic?: boolean | undefined;
|
|
1197
|
-
} | undefined;
|
|
1198
|
-
css?: {
|
|
1199
|
-
namedExports?: boolean | undefined;
|
|
1200
|
-
} | undefined;
|
|
1201
|
-
"css/auto"?: {
|
|
1202
|
-
namedExports?: boolean | undefined;
|
|
1203
|
-
} | undefined;
|
|
1204
|
-
"css/module"?: {
|
|
1205
|
-
namedExports?: boolean | undefined;
|
|
1206
|
-
} | undefined;
|
|
1207
|
-
asset?: {
|
|
1208
|
-
dataUrlCondition?: {
|
|
1209
|
-
maxSize?: number | undefined;
|
|
1210
|
-
} | undefined;
|
|
1211
|
-
} | undefined;
|
|
1212
|
-
"javascript/auto"?: {
|
|
1213
|
-
url?: boolean | "relative" | undefined;
|
|
1214
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1215
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1216
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1217
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1218
|
-
importMeta?: boolean | undefined;
|
|
1219
|
-
exprContextCritical?: boolean | undefined;
|
|
1220
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1221
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1222
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1223
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1224
|
-
strictExportPresence?: boolean | undefined;
|
|
1225
|
-
worker?: boolean | string[] | undefined;
|
|
1226
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1227
|
-
requireAsExpression?: boolean | undefined;
|
|
1228
|
-
requireDynamic?: boolean | undefined;
|
|
1229
|
-
requireResolve?: boolean | undefined;
|
|
1230
|
-
importDynamic?: boolean | undefined;
|
|
1231
|
-
} | undefined;
|
|
1232
|
-
"javascript/dynamic"?: {
|
|
1233
|
-
url?: boolean | "relative" | undefined;
|
|
1234
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1235
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1236
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1237
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1238
|
-
importMeta?: boolean | undefined;
|
|
1239
|
-
exprContextCritical?: boolean | undefined;
|
|
1240
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1241
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1242
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1243
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1244
|
-
strictExportPresence?: boolean | undefined;
|
|
1245
|
-
worker?: boolean | string[] | undefined;
|
|
1246
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1247
|
-
requireAsExpression?: boolean | undefined;
|
|
1248
|
-
requireDynamic?: boolean | undefined;
|
|
1249
|
-
requireResolve?: boolean | undefined;
|
|
1250
|
-
importDynamic?: boolean | undefined;
|
|
1251
|
-
} | undefined;
|
|
1252
|
-
"javascript/esm"?: {
|
|
1253
|
-
url?: boolean | "relative" | undefined;
|
|
1254
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1255
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1256
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1257
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1258
|
-
importMeta?: boolean | undefined;
|
|
1259
|
-
exprContextCritical?: boolean | undefined;
|
|
1260
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1261
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1262
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1263
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
1264
|
-
strictExportPresence?: boolean | undefined;
|
|
1265
|
-
worker?: boolean | string[] | undefined;
|
|
1266
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
1267
|
-
requireAsExpression?: boolean | undefined;
|
|
1268
|
-
requireDynamic?: boolean | undefined;
|
|
1269
|
-
requireResolve?: boolean | undefined;
|
|
1270
|
-
importDynamic?: boolean | undefined;
|
|
1271
|
-
} | undefined;
|
|
1272
|
-
}>, z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>]>;
|
|
1273
|
-
export type ParserOptionsByModuleType = z.infer<typeof parserOptionsByModuleType>;
|
|
1274
|
-
declare const assetGeneratorDataUrlOptions: z.ZodObject<{
|
|
1275
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
1276
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1277
|
-
}, "strict", z.ZodTypeAny, {
|
|
1278
|
-
mimetype?: string | undefined;
|
|
1279
|
-
encoding?: false | "base64" | undefined;
|
|
1280
|
-
}, {
|
|
1281
|
-
mimetype?: string | undefined;
|
|
1282
|
-
encoding?: false | "base64" | undefined;
|
|
1283
|
-
}>;
|
|
1284
|
-
export type AssetGeneratorDataUrlOptions = z.infer<typeof assetGeneratorDataUrlOptions>;
|
|
1285
|
-
declare const assetGeneratorDataUrlFunction: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1286
|
-
content: z.ZodString;
|
|
1287
|
-
filename: z.ZodString;
|
|
1288
|
-
}, "strict", z.ZodTypeAny, {
|
|
1289
|
-
filename: string;
|
|
1290
|
-
content: string;
|
|
1291
|
-
}, {
|
|
1292
|
-
filename: string;
|
|
1293
|
-
content: string;
|
|
1294
|
-
}>], z.ZodUnknown>, z.ZodString>;
|
|
1295
|
-
export type AssetGeneratorDataUrlFunction = z.infer<typeof assetGeneratorDataUrlFunction>;
|
|
1296
|
-
declare const assetGeneratorDataUrl: z.ZodUnion<[z.ZodObject<{
|
|
1297
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
1298
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1299
|
-
}, "strict", z.ZodTypeAny, {
|
|
1300
|
-
mimetype?: string | undefined;
|
|
1301
|
-
encoding?: false | "base64" | undefined;
|
|
1302
|
-
}, {
|
|
1303
|
-
mimetype?: string | undefined;
|
|
1304
|
-
encoding?: false | "base64" | undefined;
|
|
1305
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1306
|
-
content: z.ZodString;
|
|
1307
|
-
filename: z.ZodString;
|
|
1308
|
-
}, "strict", z.ZodTypeAny, {
|
|
1309
|
-
filename: string;
|
|
1310
|
-
content: string;
|
|
1311
|
-
}, {
|
|
1312
|
-
filename: string;
|
|
1313
|
-
content: string;
|
|
1314
|
-
}>], z.ZodUnknown>, z.ZodString>]>;
|
|
1315
|
-
export type AssetGeneratorDataUrl = z.infer<typeof assetGeneratorDataUrl>;
|
|
1316
10
|
declare const assetInlineGeneratorOptions: z.ZodObject<{
|
|
1317
11
|
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1318
12
|
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
@@ -1351,121 +45,6 @@ declare const assetInlineGeneratorOptions: z.ZodObject<{
|
|
|
1351
45
|
}, ...args_1: unknown[]) => string) | undefined;
|
|
1352
46
|
}>;
|
|
1353
47
|
export type AssetInlineGeneratorOptions = z.infer<typeof assetInlineGeneratorOptions>;
|
|
1354
|
-
declare const assetResourceGeneratorOptions: z.ZodObject<{
|
|
1355
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
1356
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1357
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
1358
|
-
}, "strict", z.ZodTypeAny, {
|
|
1359
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1360
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1361
|
-
emit?: boolean | undefined;
|
|
1362
|
-
}, {
|
|
1363
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1364
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1365
|
-
emit?: boolean | undefined;
|
|
1366
|
-
}>;
|
|
1367
|
-
export type AssetResourceGeneratorOptions = z.infer<typeof assetResourceGeneratorOptions>;
|
|
1368
|
-
declare const assetGeneratorOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
1369
|
-
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1370
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
1371
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1372
|
-
}, "strict", z.ZodTypeAny, {
|
|
1373
|
-
mimetype?: string | undefined;
|
|
1374
|
-
encoding?: false | "base64" | undefined;
|
|
1375
|
-
}, {
|
|
1376
|
-
mimetype?: string | undefined;
|
|
1377
|
-
encoding?: false | "base64" | undefined;
|
|
1378
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1379
|
-
content: z.ZodString;
|
|
1380
|
-
filename: z.ZodString;
|
|
1381
|
-
}, "strict", z.ZodTypeAny, {
|
|
1382
|
-
filename: string;
|
|
1383
|
-
content: string;
|
|
1384
|
-
}, {
|
|
1385
|
-
filename: string;
|
|
1386
|
-
content: string;
|
|
1387
|
-
}>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1388
|
-
}, {
|
|
1389
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
1390
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1391
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
1392
|
-
}>, "strict", z.ZodTypeAny, {
|
|
1393
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1394
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1395
|
-
emit?: boolean | undefined;
|
|
1396
|
-
dataUrl?: {
|
|
1397
|
-
mimetype?: string | undefined;
|
|
1398
|
-
encoding?: false | "base64" | undefined;
|
|
1399
|
-
} | ((args_0: {
|
|
1400
|
-
filename: string;
|
|
1401
|
-
content: string;
|
|
1402
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1403
|
-
}, {
|
|
1404
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1405
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1406
|
-
emit?: boolean | undefined;
|
|
1407
|
-
dataUrl?: {
|
|
1408
|
-
mimetype?: string | undefined;
|
|
1409
|
-
encoding?: false | "base64" | undefined;
|
|
1410
|
-
} | ((args_0: {
|
|
1411
|
-
filename: string;
|
|
1412
|
-
content: string;
|
|
1413
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1414
|
-
}>;
|
|
1415
|
-
export type AssetGeneratorOptions = z.infer<typeof assetGeneratorOptions>;
|
|
1416
|
-
declare const cssGeneratorExportsConvention: z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>;
|
|
1417
|
-
export type CssGeneratorExportsConvention = z.infer<typeof cssGeneratorExportsConvention>;
|
|
1418
|
-
declare const cssGeneratorExportsOnly: z.ZodBoolean;
|
|
1419
|
-
export type CssGeneratorExportsOnly = z.infer<typeof cssGeneratorExportsOnly>;
|
|
1420
|
-
declare const cssGeneratorLocalIdentName: z.ZodString;
|
|
1421
|
-
export type CssGeneratorLocalIdentName = z.infer<typeof cssGeneratorLocalIdentName>;
|
|
1422
|
-
declare const cssGeneratorEsModule: z.ZodBoolean;
|
|
1423
|
-
export type CssGeneratorEsModule = z.infer<typeof cssGeneratorEsModule>;
|
|
1424
|
-
declare const cssGeneratorOptions: z.ZodObject<{
|
|
1425
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1426
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1427
|
-
}, "strict", z.ZodTypeAny, {
|
|
1428
|
-
exportsOnly?: boolean | undefined;
|
|
1429
|
-
esModule?: boolean | undefined;
|
|
1430
|
-
}, {
|
|
1431
|
-
exportsOnly?: boolean | undefined;
|
|
1432
|
-
esModule?: boolean | undefined;
|
|
1433
|
-
}>;
|
|
1434
|
-
export type CssGeneratorOptions = z.infer<typeof cssGeneratorOptions>;
|
|
1435
|
-
declare const cssAutoGeneratorOptions: z.ZodObject<{
|
|
1436
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
1437
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1438
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
1439
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1440
|
-
}, "strict", z.ZodTypeAny, {
|
|
1441
|
-
exportsOnly?: boolean | undefined;
|
|
1442
|
-
esModule?: boolean | undefined;
|
|
1443
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1444
|
-
localIdentName?: string | undefined;
|
|
1445
|
-
}, {
|
|
1446
|
-
exportsOnly?: boolean | undefined;
|
|
1447
|
-
esModule?: boolean | undefined;
|
|
1448
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1449
|
-
localIdentName?: string | undefined;
|
|
1450
|
-
}>;
|
|
1451
|
-
export type CssAutoGeneratorOptions = z.infer<typeof cssAutoGeneratorOptions>;
|
|
1452
|
-
declare const cssModuleGeneratorOptions: z.ZodObject<{
|
|
1453
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
1454
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1455
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
1456
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1457
|
-
}, "strict", z.ZodTypeAny, {
|
|
1458
|
-
exportsOnly?: boolean | undefined;
|
|
1459
|
-
esModule?: boolean | undefined;
|
|
1460
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1461
|
-
localIdentName?: string | undefined;
|
|
1462
|
-
}, {
|
|
1463
|
-
exportsOnly?: boolean | undefined;
|
|
1464
|
-
esModule?: boolean | undefined;
|
|
1465
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1466
|
-
localIdentName?: string | undefined;
|
|
1467
|
-
}>;
|
|
1468
|
-
export type CssModuleGeneratorOptions = z.infer<typeof cssModuleGeneratorOptions>;
|
|
1469
48
|
declare const generatorOptionsByModuleTypeKnown: z.ZodObject<{
|
|
1470
49
|
asset: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1471
50
|
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -1694,1221 +273,6 @@ declare const generatorOptionsByModuleTypeKnown: z.ZodObject<{
|
|
|
1694
273
|
} | undefined;
|
|
1695
274
|
}>;
|
|
1696
275
|
export type GeneratorOptionsByModuleTypeKnown = z.infer<typeof generatorOptionsByModuleTypeKnown>;
|
|
1697
|
-
declare const generatorOptionsByModuleTypeUnknown: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1698
|
-
export type GeneratorOptionsByModuleTypeUnknown = z.infer<typeof generatorOptionsByModuleTypeUnknown>;
|
|
1699
|
-
declare const generatorOptionsByModuleType: z.ZodUnion<[z.ZodObject<{
|
|
1700
|
-
asset: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1701
|
-
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1702
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
1703
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1704
|
-
}, "strict", z.ZodTypeAny, {
|
|
1705
|
-
mimetype?: string | undefined;
|
|
1706
|
-
encoding?: false | "base64" | undefined;
|
|
1707
|
-
}, {
|
|
1708
|
-
mimetype?: string | undefined;
|
|
1709
|
-
encoding?: false | "base64" | undefined;
|
|
1710
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1711
|
-
content: z.ZodString;
|
|
1712
|
-
filename: z.ZodString;
|
|
1713
|
-
}, "strict", z.ZodTypeAny, {
|
|
1714
|
-
filename: string;
|
|
1715
|
-
content: string;
|
|
1716
|
-
}, {
|
|
1717
|
-
filename: string;
|
|
1718
|
-
content: string;
|
|
1719
|
-
}>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1720
|
-
}, {
|
|
1721
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
1722
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1723
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
1724
|
-
}>, "strict", z.ZodTypeAny, {
|
|
1725
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1726
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1727
|
-
emit?: boolean | undefined;
|
|
1728
|
-
dataUrl?: {
|
|
1729
|
-
mimetype?: string | undefined;
|
|
1730
|
-
encoding?: false | "base64" | undefined;
|
|
1731
|
-
} | ((args_0: {
|
|
1732
|
-
filename: string;
|
|
1733
|
-
content: string;
|
|
1734
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1735
|
-
}, {
|
|
1736
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1737
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1738
|
-
emit?: boolean | undefined;
|
|
1739
|
-
dataUrl?: {
|
|
1740
|
-
mimetype?: string | undefined;
|
|
1741
|
-
encoding?: false | "base64" | undefined;
|
|
1742
|
-
} | ((args_0: {
|
|
1743
|
-
filename: string;
|
|
1744
|
-
content: string;
|
|
1745
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1746
|
-
}>>;
|
|
1747
|
-
"asset/inline": z.ZodOptional<z.ZodObject<{
|
|
1748
|
-
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1749
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
1750
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1751
|
-
}, "strict", z.ZodTypeAny, {
|
|
1752
|
-
mimetype?: string | undefined;
|
|
1753
|
-
encoding?: false | "base64" | undefined;
|
|
1754
|
-
}, {
|
|
1755
|
-
mimetype?: string | undefined;
|
|
1756
|
-
encoding?: false | "base64" | undefined;
|
|
1757
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1758
|
-
content: z.ZodString;
|
|
1759
|
-
filename: z.ZodString;
|
|
1760
|
-
}, "strict", z.ZodTypeAny, {
|
|
1761
|
-
filename: string;
|
|
1762
|
-
content: string;
|
|
1763
|
-
}, {
|
|
1764
|
-
filename: string;
|
|
1765
|
-
content: string;
|
|
1766
|
-
}>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1767
|
-
}, "strict", z.ZodTypeAny, {
|
|
1768
|
-
dataUrl?: {
|
|
1769
|
-
mimetype?: string | undefined;
|
|
1770
|
-
encoding?: false | "base64" | undefined;
|
|
1771
|
-
} | ((args_0: {
|
|
1772
|
-
filename: string;
|
|
1773
|
-
content: string;
|
|
1774
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1775
|
-
}, {
|
|
1776
|
-
dataUrl?: {
|
|
1777
|
-
mimetype?: string | undefined;
|
|
1778
|
-
encoding?: false | "base64" | undefined;
|
|
1779
|
-
} | ((args_0: {
|
|
1780
|
-
filename: string;
|
|
1781
|
-
content: string;
|
|
1782
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1783
|
-
}>>;
|
|
1784
|
-
"asset/resource": z.ZodOptional<z.ZodObject<{
|
|
1785
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
1786
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
1787
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
1788
|
-
}, "strict", z.ZodTypeAny, {
|
|
1789
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1790
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1791
|
-
emit?: boolean | undefined;
|
|
1792
|
-
}, {
|
|
1793
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1794
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1795
|
-
emit?: boolean | undefined;
|
|
1796
|
-
}>>;
|
|
1797
|
-
css: z.ZodOptional<z.ZodObject<{
|
|
1798
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1799
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1800
|
-
}, "strict", z.ZodTypeAny, {
|
|
1801
|
-
exportsOnly?: boolean | undefined;
|
|
1802
|
-
esModule?: boolean | undefined;
|
|
1803
|
-
}, {
|
|
1804
|
-
exportsOnly?: boolean | undefined;
|
|
1805
|
-
esModule?: boolean | undefined;
|
|
1806
|
-
}>>;
|
|
1807
|
-
"css/auto": z.ZodOptional<z.ZodObject<{
|
|
1808
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
1809
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1810
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
1811
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1812
|
-
}, "strict", z.ZodTypeAny, {
|
|
1813
|
-
exportsOnly?: boolean | undefined;
|
|
1814
|
-
esModule?: boolean | undefined;
|
|
1815
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1816
|
-
localIdentName?: string | undefined;
|
|
1817
|
-
}, {
|
|
1818
|
-
exportsOnly?: boolean | undefined;
|
|
1819
|
-
esModule?: boolean | undefined;
|
|
1820
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1821
|
-
localIdentName?: string | undefined;
|
|
1822
|
-
}>>;
|
|
1823
|
-
"css/module": z.ZodOptional<z.ZodObject<{
|
|
1824
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
1825
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1826
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
1827
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
1828
|
-
}, "strict", z.ZodTypeAny, {
|
|
1829
|
-
exportsOnly?: boolean | undefined;
|
|
1830
|
-
esModule?: boolean | undefined;
|
|
1831
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1832
|
-
localIdentName?: string | undefined;
|
|
1833
|
-
}, {
|
|
1834
|
-
exportsOnly?: boolean | undefined;
|
|
1835
|
-
esModule?: boolean | undefined;
|
|
1836
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1837
|
-
localIdentName?: string | undefined;
|
|
1838
|
-
}>>;
|
|
1839
|
-
}, "strict", z.ZodTypeAny, {
|
|
1840
|
-
css?: {
|
|
1841
|
-
exportsOnly?: boolean | undefined;
|
|
1842
|
-
esModule?: boolean | undefined;
|
|
1843
|
-
} | undefined;
|
|
1844
|
-
"css/auto"?: {
|
|
1845
|
-
exportsOnly?: boolean | undefined;
|
|
1846
|
-
esModule?: boolean | undefined;
|
|
1847
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1848
|
-
localIdentName?: string | undefined;
|
|
1849
|
-
} | undefined;
|
|
1850
|
-
"css/module"?: {
|
|
1851
|
-
exportsOnly?: boolean | undefined;
|
|
1852
|
-
esModule?: boolean | undefined;
|
|
1853
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1854
|
-
localIdentName?: string | undefined;
|
|
1855
|
-
} | undefined;
|
|
1856
|
-
asset?: {
|
|
1857
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1858
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1859
|
-
emit?: boolean | undefined;
|
|
1860
|
-
dataUrl?: {
|
|
1861
|
-
mimetype?: string | undefined;
|
|
1862
|
-
encoding?: false | "base64" | undefined;
|
|
1863
|
-
} | ((args_0: {
|
|
1864
|
-
filename: string;
|
|
1865
|
-
content: string;
|
|
1866
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1867
|
-
} | undefined;
|
|
1868
|
-
"asset/inline"?: {
|
|
1869
|
-
dataUrl?: {
|
|
1870
|
-
mimetype?: string | undefined;
|
|
1871
|
-
encoding?: false | "base64" | undefined;
|
|
1872
|
-
} | ((args_0: {
|
|
1873
|
-
filename: string;
|
|
1874
|
-
content: string;
|
|
1875
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1876
|
-
} | undefined;
|
|
1877
|
-
"asset/resource"?: {
|
|
1878
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1879
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1880
|
-
emit?: boolean | undefined;
|
|
1881
|
-
} | undefined;
|
|
1882
|
-
}, {
|
|
1883
|
-
css?: {
|
|
1884
|
-
exportsOnly?: boolean | undefined;
|
|
1885
|
-
esModule?: boolean | undefined;
|
|
1886
|
-
} | undefined;
|
|
1887
|
-
"css/auto"?: {
|
|
1888
|
-
exportsOnly?: boolean | undefined;
|
|
1889
|
-
esModule?: boolean | undefined;
|
|
1890
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1891
|
-
localIdentName?: string | undefined;
|
|
1892
|
-
} | undefined;
|
|
1893
|
-
"css/module"?: {
|
|
1894
|
-
exportsOnly?: boolean | undefined;
|
|
1895
|
-
esModule?: boolean | undefined;
|
|
1896
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
1897
|
-
localIdentName?: string | undefined;
|
|
1898
|
-
} | undefined;
|
|
1899
|
-
asset?: {
|
|
1900
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1901
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1902
|
-
emit?: boolean | undefined;
|
|
1903
|
-
dataUrl?: {
|
|
1904
|
-
mimetype?: string | undefined;
|
|
1905
|
-
encoding?: false | "base64" | undefined;
|
|
1906
|
-
} | ((args_0: {
|
|
1907
|
-
filename: string;
|
|
1908
|
-
content: string;
|
|
1909
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1910
|
-
} | undefined;
|
|
1911
|
-
"asset/inline"?: {
|
|
1912
|
-
dataUrl?: {
|
|
1913
|
-
mimetype?: string | undefined;
|
|
1914
|
-
encoding?: false | "base64" | undefined;
|
|
1915
|
-
} | ((args_0: {
|
|
1916
|
-
filename: string;
|
|
1917
|
-
content: string;
|
|
1918
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
1919
|
-
} | undefined;
|
|
1920
|
-
"asset/resource"?: {
|
|
1921
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1922
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
1923
|
-
emit?: boolean | undefined;
|
|
1924
|
-
} | undefined;
|
|
1925
|
-
}>, z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>]>;
|
|
1926
|
-
export type GeneratorOptionsByModuleType = z.infer<typeof generatorOptionsByModuleType>;
|
|
1927
|
-
declare const noParseOption: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>, "many">]>;
|
|
1928
|
-
export type NoParseOption = z.infer<typeof noParseOption>;
|
|
1929
|
-
declare const moduleOptions: z.ZodObject<{
|
|
1930
|
-
defaultRules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<RuleSetRule, z.ZodTypeDef, RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
1931
|
-
rules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<RuleSetRule, z.ZodTypeDef, RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
1932
|
-
parser: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1933
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
1934
|
-
dataUrlCondition: z.ZodOptional<z.ZodObject<{
|
|
1935
|
-
maxSize: z.ZodOptional<z.ZodNumber>;
|
|
1936
|
-
}, "strict", z.ZodTypeAny, {
|
|
1937
|
-
maxSize?: number | undefined;
|
|
1938
|
-
}, {
|
|
1939
|
-
maxSize?: number | undefined;
|
|
1940
|
-
}>>;
|
|
1941
|
-
}, "strict", z.ZodTypeAny, {
|
|
1942
|
-
dataUrlCondition?: {
|
|
1943
|
-
maxSize?: number | undefined;
|
|
1944
|
-
} | undefined;
|
|
1945
|
-
}, {
|
|
1946
|
-
dataUrlCondition?: {
|
|
1947
|
-
maxSize?: number | undefined;
|
|
1948
|
-
} | undefined;
|
|
1949
|
-
}>>;
|
|
1950
|
-
css: z.ZodOptional<z.ZodObject<{
|
|
1951
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
1952
|
-
}, "strict", z.ZodTypeAny, {
|
|
1953
|
-
namedExports?: boolean | undefined;
|
|
1954
|
-
}, {
|
|
1955
|
-
namedExports?: boolean | undefined;
|
|
1956
|
-
}>>;
|
|
1957
|
-
"css/auto": z.ZodOptional<z.ZodObject<{
|
|
1958
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
1959
|
-
}, "strict", z.ZodTypeAny, {
|
|
1960
|
-
namedExports?: boolean | undefined;
|
|
1961
|
-
}, {
|
|
1962
|
-
namedExports?: boolean | undefined;
|
|
1963
|
-
}>>;
|
|
1964
|
-
"css/module": z.ZodOptional<z.ZodObject<{
|
|
1965
|
-
namedExports: z.ZodOptional<z.ZodBoolean>;
|
|
1966
|
-
}, "strict", z.ZodTypeAny, {
|
|
1967
|
-
namedExports?: boolean | undefined;
|
|
1968
|
-
}, {
|
|
1969
|
-
namedExports?: boolean | undefined;
|
|
1970
|
-
}>>;
|
|
1971
|
-
javascript: z.ZodOptional<z.ZodObject<{
|
|
1972
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
1973
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1974
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
1975
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
1976
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
1977
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
1978
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1979
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
1980
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1981
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1982
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
1983
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
1984
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
1985
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
1986
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
1987
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
1988
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
1989
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
1990
|
-
}, "strict", z.ZodTypeAny, {
|
|
1991
|
-
url?: boolean | "relative" | undefined;
|
|
1992
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
1993
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
1994
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
1995
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
1996
|
-
importMeta?: boolean | undefined;
|
|
1997
|
-
exprContextCritical?: boolean | undefined;
|
|
1998
|
-
wrappedContextCritical?: boolean | undefined;
|
|
1999
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2000
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2001
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2002
|
-
strictExportPresence?: boolean | undefined;
|
|
2003
|
-
worker?: boolean | string[] | undefined;
|
|
2004
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2005
|
-
requireAsExpression?: boolean | undefined;
|
|
2006
|
-
requireDynamic?: boolean | undefined;
|
|
2007
|
-
requireResolve?: boolean | undefined;
|
|
2008
|
-
importDynamic?: boolean | undefined;
|
|
2009
|
-
}, {
|
|
2010
|
-
url?: boolean | "relative" | undefined;
|
|
2011
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2012
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2013
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2014
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2015
|
-
importMeta?: boolean | undefined;
|
|
2016
|
-
exprContextCritical?: boolean | undefined;
|
|
2017
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2018
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2019
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2020
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2021
|
-
strictExportPresence?: boolean | undefined;
|
|
2022
|
-
worker?: boolean | string[] | undefined;
|
|
2023
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2024
|
-
requireAsExpression?: boolean | undefined;
|
|
2025
|
-
requireDynamic?: boolean | undefined;
|
|
2026
|
-
requireResolve?: boolean | undefined;
|
|
2027
|
-
importDynamic?: boolean | undefined;
|
|
2028
|
-
}>>;
|
|
2029
|
-
"javascript/auto": z.ZodOptional<z.ZodObject<{
|
|
2030
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2031
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2032
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2033
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2034
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
2035
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2036
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2037
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2038
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2039
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2040
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2041
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
2042
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
2043
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
2044
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
2045
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2046
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
2047
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2048
|
-
}, "strict", z.ZodTypeAny, {
|
|
2049
|
-
url?: boolean | "relative" | undefined;
|
|
2050
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2051
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2052
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2053
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2054
|
-
importMeta?: boolean | undefined;
|
|
2055
|
-
exprContextCritical?: boolean | undefined;
|
|
2056
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2057
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2058
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2059
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2060
|
-
strictExportPresence?: boolean | undefined;
|
|
2061
|
-
worker?: boolean | string[] | undefined;
|
|
2062
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2063
|
-
requireAsExpression?: boolean | undefined;
|
|
2064
|
-
requireDynamic?: boolean | undefined;
|
|
2065
|
-
requireResolve?: boolean | undefined;
|
|
2066
|
-
importDynamic?: boolean | undefined;
|
|
2067
|
-
}, {
|
|
2068
|
-
url?: boolean | "relative" | undefined;
|
|
2069
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2070
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2071
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2072
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2073
|
-
importMeta?: boolean | undefined;
|
|
2074
|
-
exprContextCritical?: boolean | undefined;
|
|
2075
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2076
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2077
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2078
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2079
|
-
strictExportPresence?: boolean | undefined;
|
|
2080
|
-
worker?: boolean | string[] | undefined;
|
|
2081
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2082
|
-
requireAsExpression?: boolean | undefined;
|
|
2083
|
-
requireDynamic?: boolean | undefined;
|
|
2084
|
-
requireResolve?: boolean | undefined;
|
|
2085
|
-
importDynamic?: boolean | undefined;
|
|
2086
|
-
}>>;
|
|
2087
|
-
"javascript/dynamic": z.ZodOptional<z.ZodObject<{
|
|
2088
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2089
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2090
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2091
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2092
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
2093
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2094
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2095
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2096
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2097
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2098
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2099
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
2100
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
2101
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
2102
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
2103
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2104
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
2105
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2106
|
-
}, "strict", z.ZodTypeAny, {
|
|
2107
|
-
url?: boolean | "relative" | undefined;
|
|
2108
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2109
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2110
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2111
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2112
|
-
importMeta?: boolean | undefined;
|
|
2113
|
-
exprContextCritical?: boolean | undefined;
|
|
2114
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2115
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2116
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2117
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2118
|
-
strictExportPresence?: boolean | undefined;
|
|
2119
|
-
worker?: boolean | string[] | undefined;
|
|
2120
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2121
|
-
requireAsExpression?: boolean | undefined;
|
|
2122
|
-
requireDynamic?: boolean | undefined;
|
|
2123
|
-
requireResolve?: boolean | undefined;
|
|
2124
|
-
importDynamic?: boolean | undefined;
|
|
2125
|
-
}, {
|
|
2126
|
-
url?: boolean | "relative" | undefined;
|
|
2127
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2128
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2129
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2130
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2131
|
-
importMeta?: boolean | undefined;
|
|
2132
|
-
exprContextCritical?: boolean | undefined;
|
|
2133
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2134
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2135
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2136
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2137
|
-
strictExportPresence?: boolean | undefined;
|
|
2138
|
-
worker?: boolean | string[] | undefined;
|
|
2139
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2140
|
-
requireAsExpression?: boolean | undefined;
|
|
2141
|
-
requireDynamic?: boolean | undefined;
|
|
2142
|
-
requireResolve?: boolean | undefined;
|
|
2143
|
-
importDynamic?: boolean | undefined;
|
|
2144
|
-
}>>;
|
|
2145
|
-
"javascript/esm": z.ZodOptional<z.ZodObject<{
|
|
2146
|
-
dynamicImportMode: z.ZodOptional<z.ZodEnum<["eager", "lazy", "weak", "lazy-once"]>>;
|
|
2147
|
-
dynamicImportPreload: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2148
|
-
dynamicImportPrefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
2149
|
-
dynamicImportFetchPriority: z.ZodOptional<z.ZodEnum<["low", "high", "auto"]>>;
|
|
2150
|
-
importMeta: z.ZodOptional<z.ZodBoolean>;
|
|
2151
|
-
url: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"relative">, z.ZodBoolean]>>;
|
|
2152
|
-
exprContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2153
|
-
wrappedContextCritical: z.ZodOptional<z.ZodBoolean>;
|
|
2154
|
-
exportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2155
|
-
importExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2156
|
-
reexportExportsPresence: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "warn", "auto"]>, z.ZodLiteral<false>]>>;
|
|
2157
|
-
strictExportPresence: z.ZodOptional<z.ZodBoolean>;
|
|
2158
|
-
worker: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodBoolean]>>;
|
|
2159
|
-
overrideStrict: z.ZodOptional<z.ZodEnum<["strict", "non-strict"]>>;
|
|
2160
|
-
requireAsExpression: z.ZodOptional<z.ZodBoolean>;
|
|
2161
|
-
requireDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2162
|
-
requireResolve: z.ZodOptional<z.ZodBoolean>;
|
|
2163
|
-
importDynamic: z.ZodOptional<z.ZodBoolean>;
|
|
2164
|
-
}, "strict", z.ZodTypeAny, {
|
|
2165
|
-
url?: boolean | "relative" | undefined;
|
|
2166
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2167
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2168
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2169
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2170
|
-
importMeta?: boolean | undefined;
|
|
2171
|
-
exprContextCritical?: boolean | undefined;
|
|
2172
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2173
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2174
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2175
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2176
|
-
strictExportPresence?: boolean | undefined;
|
|
2177
|
-
worker?: boolean | string[] | undefined;
|
|
2178
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2179
|
-
requireAsExpression?: boolean | undefined;
|
|
2180
|
-
requireDynamic?: boolean | undefined;
|
|
2181
|
-
requireResolve?: boolean | undefined;
|
|
2182
|
-
importDynamic?: boolean | undefined;
|
|
2183
|
-
}, {
|
|
2184
|
-
url?: boolean | "relative" | undefined;
|
|
2185
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2186
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2187
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2188
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2189
|
-
importMeta?: boolean | undefined;
|
|
2190
|
-
exprContextCritical?: boolean | undefined;
|
|
2191
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2192
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2193
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2194
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2195
|
-
strictExportPresence?: boolean | undefined;
|
|
2196
|
-
worker?: boolean | string[] | undefined;
|
|
2197
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2198
|
-
requireAsExpression?: boolean | undefined;
|
|
2199
|
-
requireDynamic?: boolean | undefined;
|
|
2200
|
-
requireResolve?: boolean | undefined;
|
|
2201
|
-
importDynamic?: boolean | undefined;
|
|
2202
|
-
}>>;
|
|
2203
|
-
}, "strict", z.ZodTypeAny, {
|
|
2204
|
-
javascript?: {
|
|
2205
|
-
url?: boolean | "relative" | undefined;
|
|
2206
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2207
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2208
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2209
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2210
|
-
importMeta?: boolean | undefined;
|
|
2211
|
-
exprContextCritical?: boolean | undefined;
|
|
2212
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2213
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2214
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2215
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2216
|
-
strictExportPresence?: boolean | undefined;
|
|
2217
|
-
worker?: boolean | string[] | undefined;
|
|
2218
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2219
|
-
requireAsExpression?: boolean | undefined;
|
|
2220
|
-
requireDynamic?: boolean | undefined;
|
|
2221
|
-
requireResolve?: boolean | undefined;
|
|
2222
|
-
importDynamic?: boolean | undefined;
|
|
2223
|
-
} | undefined;
|
|
2224
|
-
css?: {
|
|
2225
|
-
namedExports?: boolean | undefined;
|
|
2226
|
-
} | undefined;
|
|
2227
|
-
"css/auto"?: {
|
|
2228
|
-
namedExports?: boolean | undefined;
|
|
2229
|
-
} | undefined;
|
|
2230
|
-
"css/module"?: {
|
|
2231
|
-
namedExports?: boolean | undefined;
|
|
2232
|
-
} | undefined;
|
|
2233
|
-
asset?: {
|
|
2234
|
-
dataUrlCondition?: {
|
|
2235
|
-
maxSize?: number | undefined;
|
|
2236
|
-
} | undefined;
|
|
2237
|
-
} | undefined;
|
|
2238
|
-
"javascript/auto"?: {
|
|
2239
|
-
url?: boolean | "relative" | undefined;
|
|
2240
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2241
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2242
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2243
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2244
|
-
importMeta?: boolean | undefined;
|
|
2245
|
-
exprContextCritical?: boolean | undefined;
|
|
2246
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2247
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2248
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2249
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2250
|
-
strictExportPresence?: boolean | undefined;
|
|
2251
|
-
worker?: boolean | string[] | undefined;
|
|
2252
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2253
|
-
requireAsExpression?: boolean | undefined;
|
|
2254
|
-
requireDynamic?: boolean | undefined;
|
|
2255
|
-
requireResolve?: boolean | undefined;
|
|
2256
|
-
importDynamic?: boolean | undefined;
|
|
2257
|
-
} | undefined;
|
|
2258
|
-
"javascript/dynamic"?: {
|
|
2259
|
-
url?: boolean | "relative" | undefined;
|
|
2260
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2261
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2262
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2263
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2264
|
-
importMeta?: boolean | undefined;
|
|
2265
|
-
exprContextCritical?: boolean | undefined;
|
|
2266
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2267
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2268
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2269
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2270
|
-
strictExportPresence?: boolean | undefined;
|
|
2271
|
-
worker?: boolean | string[] | undefined;
|
|
2272
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2273
|
-
requireAsExpression?: boolean | undefined;
|
|
2274
|
-
requireDynamic?: boolean | undefined;
|
|
2275
|
-
requireResolve?: boolean | undefined;
|
|
2276
|
-
importDynamic?: boolean | undefined;
|
|
2277
|
-
} | undefined;
|
|
2278
|
-
"javascript/esm"?: {
|
|
2279
|
-
url?: boolean | "relative" | undefined;
|
|
2280
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2281
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2282
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2283
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2284
|
-
importMeta?: boolean | undefined;
|
|
2285
|
-
exprContextCritical?: boolean | undefined;
|
|
2286
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2287
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2288
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2289
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2290
|
-
strictExportPresence?: boolean | undefined;
|
|
2291
|
-
worker?: boolean | string[] | undefined;
|
|
2292
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2293
|
-
requireAsExpression?: boolean | undefined;
|
|
2294
|
-
requireDynamic?: boolean | undefined;
|
|
2295
|
-
requireResolve?: boolean | undefined;
|
|
2296
|
-
importDynamic?: boolean | undefined;
|
|
2297
|
-
} | undefined;
|
|
2298
|
-
}, {
|
|
2299
|
-
javascript?: {
|
|
2300
|
-
url?: boolean | "relative" | undefined;
|
|
2301
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2302
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2303
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2304
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2305
|
-
importMeta?: boolean | undefined;
|
|
2306
|
-
exprContextCritical?: boolean | undefined;
|
|
2307
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2308
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2309
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2310
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2311
|
-
strictExportPresence?: boolean | undefined;
|
|
2312
|
-
worker?: boolean | string[] | undefined;
|
|
2313
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2314
|
-
requireAsExpression?: boolean | undefined;
|
|
2315
|
-
requireDynamic?: boolean | undefined;
|
|
2316
|
-
requireResolve?: boolean | undefined;
|
|
2317
|
-
importDynamic?: boolean | undefined;
|
|
2318
|
-
} | undefined;
|
|
2319
|
-
css?: {
|
|
2320
|
-
namedExports?: boolean | undefined;
|
|
2321
|
-
} | undefined;
|
|
2322
|
-
"css/auto"?: {
|
|
2323
|
-
namedExports?: boolean | undefined;
|
|
2324
|
-
} | undefined;
|
|
2325
|
-
"css/module"?: {
|
|
2326
|
-
namedExports?: boolean | undefined;
|
|
2327
|
-
} | undefined;
|
|
2328
|
-
asset?: {
|
|
2329
|
-
dataUrlCondition?: {
|
|
2330
|
-
maxSize?: number | undefined;
|
|
2331
|
-
} | undefined;
|
|
2332
|
-
} | undefined;
|
|
2333
|
-
"javascript/auto"?: {
|
|
2334
|
-
url?: boolean | "relative" | undefined;
|
|
2335
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2336
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2337
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2338
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2339
|
-
importMeta?: boolean | undefined;
|
|
2340
|
-
exprContextCritical?: boolean | undefined;
|
|
2341
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2342
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2343
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2344
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2345
|
-
strictExportPresence?: boolean | undefined;
|
|
2346
|
-
worker?: boolean | string[] | undefined;
|
|
2347
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2348
|
-
requireAsExpression?: boolean | undefined;
|
|
2349
|
-
requireDynamic?: boolean | undefined;
|
|
2350
|
-
requireResolve?: boolean | undefined;
|
|
2351
|
-
importDynamic?: boolean | undefined;
|
|
2352
|
-
} | undefined;
|
|
2353
|
-
"javascript/dynamic"?: {
|
|
2354
|
-
url?: boolean | "relative" | undefined;
|
|
2355
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2356
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2357
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2358
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2359
|
-
importMeta?: boolean | undefined;
|
|
2360
|
-
exprContextCritical?: boolean | undefined;
|
|
2361
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2362
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2363
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2364
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2365
|
-
strictExportPresence?: boolean | undefined;
|
|
2366
|
-
worker?: boolean | string[] | undefined;
|
|
2367
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2368
|
-
requireAsExpression?: boolean | undefined;
|
|
2369
|
-
requireDynamic?: boolean | undefined;
|
|
2370
|
-
requireResolve?: boolean | undefined;
|
|
2371
|
-
importDynamic?: boolean | undefined;
|
|
2372
|
-
} | undefined;
|
|
2373
|
-
"javascript/esm"?: {
|
|
2374
|
-
url?: boolean | "relative" | undefined;
|
|
2375
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2376
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2377
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2378
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2379
|
-
importMeta?: boolean | undefined;
|
|
2380
|
-
exprContextCritical?: boolean | undefined;
|
|
2381
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2382
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2383
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2384
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2385
|
-
strictExportPresence?: boolean | undefined;
|
|
2386
|
-
worker?: boolean | string[] | undefined;
|
|
2387
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2388
|
-
requireAsExpression?: boolean | undefined;
|
|
2389
|
-
requireDynamic?: boolean | undefined;
|
|
2390
|
-
requireResolve?: boolean | undefined;
|
|
2391
|
-
importDynamic?: boolean | undefined;
|
|
2392
|
-
} | undefined;
|
|
2393
|
-
}>, z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>]>>;
|
|
2394
|
-
generator: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2395
|
-
asset: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
2396
|
-
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2397
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
2398
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
2399
|
-
}, "strict", z.ZodTypeAny, {
|
|
2400
|
-
mimetype?: string | undefined;
|
|
2401
|
-
encoding?: false | "base64" | undefined;
|
|
2402
|
-
}, {
|
|
2403
|
-
mimetype?: string | undefined;
|
|
2404
|
-
encoding?: false | "base64" | undefined;
|
|
2405
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
2406
|
-
content: z.ZodString;
|
|
2407
|
-
filename: z.ZodString;
|
|
2408
|
-
}, "strict", z.ZodTypeAny, {
|
|
2409
|
-
filename: string;
|
|
2410
|
-
content: string;
|
|
2411
|
-
}, {
|
|
2412
|
-
filename: string;
|
|
2413
|
-
content: string;
|
|
2414
|
-
}>], z.ZodUnknown>, z.ZodString>]>>;
|
|
2415
|
-
}, {
|
|
2416
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
2417
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
2418
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
2419
|
-
}>, "strict", z.ZodTypeAny, {
|
|
2420
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2421
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2422
|
-
emit?: boolean | undefined;
|
|
2423
|
-
dataUrl?: {
|
|
2424
|
-
mimetype?: string | undefined;
|
|
2425
|
-
encoding?: false | "base64" | undefined;
|
|
2426
|
-
} | ((args_0: {
|
|
2427
|
-
filename: string;
|
|
2428
|
-
content: string;
|
|
2429
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2430
|
-
}, {
|
|
2431
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2432
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2433
|
-
emit?: boolean | undefined;
|
|
2434
|
-
dataUrl?: {
|
|
2435
|
-
mimetype?: string | undefined;
|
|
2436
|
-
encoding?: false | "base64" | undefined;
|
|
2437
|
-
} | ((args_0: {
|
|
2438
|
-
filename: string;
|
|
2439
|
-
content: string;
|
|
2440
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2441
|
-
}>>;
|
|
2442
|
-
"asset/inline": z.ZodOptional<z.ZodObject<{
|
|
2443
|
-
dataUrl: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2444
|
-
encoding: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<"base64">]>>;
|
|
2445
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
2446
|
-
}, "strict", z.ZodTypeAny, {
|
|
2447
|
-
mimetype?: string | undefined;
|
|
2448
|
-
encoding?: false | "base64" | undefined;
|
|
2449
|
-
}, {
|
|
2450
|
-
mimetype?: string | undefined;
|
|
2451
|
-
encoding?: false | "base64" | undefined;
|
|
2452
|
-
}>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
2453
|
-
content: z.ZodString;
|
|
2454
|
-
filename: z.ZodString;
|
|
2455
|
-
}, "strict", z.ZodTypeAny, {
|
|
2456
|
-
filename: string;
|
|
2457
|
-
content: string;
|
|
2458
|
-
}, {
|
|
2459
|
-
filename: string;
|
|
2460
|
-
content: string;
|
|
2461
|
-
}>], z.ZodUnknown>, z.ZodString>]>>;
|
|
2462
|
-
}, "strict", z.ZodTypeAny, {
|
|
2463
|
-
dataUrl?: {
|
|
2464
|
-
mimetype?: string | undefined;
|
|
2465
|
-
encoding?: false | "base64" | undefined;
|
|
2466
|
-
} | ((args_0: {
|
|
2467
|
-
filename: string;
|
|
2468
|
-
content: string;
|
|
2469
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2470
|
-
}, {
|
|
2471
|
-
dataUrl?: {
|
|
2472
|
-
mimetype?: string | undefined;
|
|
2473
|
-
encoding?: false | "base64" | undefined;
|
|
2474
|
-
} | ((args_0: {
|
|
2475
|
-
filename: string;
|
|
2476
|
-
content: string;
|
|
2477
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2478
|
-
}>>;
|
|
2479
|
-
"asset/resource": z.ZodOptional<z.ZodObject<{
|
|
2480
|
-
emit: z.ZodOptional<z.ZodBoolean>;
|
|
2481
|
-
filename: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>>;
|
|
2482
|
-
publicPath: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodType<PathData, z.ZodTypeDef, PathData>, z.ZodOptional<z.ZodType<JsAssetInfo, z.ZodTypeDef, JsAssetInfo>>], z.ZodUnknown>, z.ZodString>]>]>>;
|
|
2483
|
-
}, "strict", z.ZodTypeAny, {
|
|
2484
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2485
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2486
|
-
emit?: boolean | undefined;
|
|
2487
|
-
}, {
|
|
2488
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2489
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2490
|
-
emit?: boolean | undefined;
|
|
2491
|
-
}>>;
|
|
2492
|
-
css: z.ZodOptional<z.ZodObject<{
|
|
2493
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2494
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
2495
|
-
}, "strict", z.ZodTypeAny, {
|
|
2496
|
-
exportsOnly?: boolean | undefined;
|
|
2497
|
-
esModule?: boolean | undefined;
|
|
2498
|
-
}, {
|
|
2499
|
-
exportsOnly?: boolean | undefined;
|
|
2500
|
-
esModule?: boolean | undefined;
|
|
2501
|
-
}>>;
|
|
2502
|
-
"css/auto": z.ZodOptional<z.ZodObject<{
|
|
2503
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
2504
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2505
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
2506
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
2507
|
-
}, "strict", z.ZodTypeAny, {
|
|
2508
|
-
exportsOnly?: boolean | undefined;
|
|
2509
|
-
esModule?: boolean | undefined;
|
|
2510
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2511
|
-
localIdentName?: string | undefined;
|
|
2512
|
-
}, {
|
|
2513
|
-
exportsOnly?: boolean | undefined;
|
|
2514
|
-
esModule?: boolean | undefined;
|
|
2515
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2516
|
-
localIdentName?: string | undefined;
|
|
2517
|
-
}>>;
|
|
2518
|
-
"css/module": z.ZodOptional<z.ZodObject<{
|
|
2519
|
-
exportsConvention: z.ZodOptional<z.ZodEnum<["as-is", "camel-case", "camel-case-only", "dashes", "dashes-only"]>>;
|
|
2520
|
-
exportsOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2521
|
-
localIdentName: z.ZodOptional<z.ZodString>;
|
|
2522
|
-
esModule: z.ZodOptional<z.ZodBoolean>;
|
|
2523
|
-
}, "strict", z.ZodTypeAny, {
|
|
2524
|
-
exportsOnly?: boolean | undefined;
|
|
2525
|
-
esModule?: boolean | undefined;
|
|
2526
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2527
|
-
localIdentName?: string | undefined;
|
|
2528
|
-
}, {
|
|
2529
|
-
exportsOnly?: boolean | undefined;
|
|
2530
|
-
esModule?: boolean | undefined;
|
|
2531
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2532
|
-
localIdentName?: string | undefined;
|
|
2533
|
-
}>>;
|
|
2534
|
-
}, "strict", z.ZodTypeAny, {
|
|
2535
|
-
css?: {
|
|
2536
|
-
exportsOnly?: boolean | undefined;
|
|
2537
|
-
esModule?: boolean | undefined;
|
|
2538
|
-
} | undefined;
|
|
2539
|
-
"css/auto"?: {
|
|
2540
|
-
exportsOnly?: boolean | undefined;
|
|
2541
|
-
esModule?: boolean | undefined;
|
|
2542
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2543
|
-
localIdentName?: string | undefined;
|
|
2544
|
-
} | undefined;
|
|
2545
|
-
"css/module"?: {
|
|
2546
|
-
exportsOnly?: boolean | undefined;
|
|
2547
|
-
esModule?: boolean | undefined;
|
|
2548
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2549
|
-
localIdentName?: string | undefined;
|
|
2550
|
-
} | undefined;
|
|
2551
|
-
asset?: {
|
|
2552
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2553
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2554
|
-
emit?: boolean | undefined;
|
|
2555
|
-
dataUrl?: {
|
|
2556
|
-
mimetype?: string | undefined;
|
|
2557
|
-
encoding?: false | "base64" | undefined;
|
|
2558
|
-
} | ((args_0: {
|
|
2559
|
-
filename: string;
|
|
2560
|
-
content: string;
|
|
2561
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2562
|
-
} | undefined;
|
|
2563
|
-
"asset/inline"?: {
|
|
2564
|
-
dataUrl?: {
|
|
2565
|
-
mimetype?: string | undefined;
|
|
2566
|
-
encoding?: false | "base64" | undefined;
|
|
2567
|
-
} | ((args_0: {
|
|
2568
|
-
filename: string;
|
|
2569
|
-
content: string;
|
|
2570
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2571
|
-
} | undefined;
|
|
2572
|
-
"asset/resource"?: {
|
|
2573
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2574
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2575
|
-
emit?: boolean | undefined;
|
|
2576
|
-
} | undefined;
|
|
2577
|
-
}, {
|
|
2578
|
-
css?: {
|
|
2579
|
-
exportsOnly?: boolean | undefined;
|
|
2580
|
-
esModule?: boolean | undefined;
|
|
2581
|
-
} | undefined;
|
|
2582
|
-
"css/auto"?: {
|
|
2583
|
-
exportsOnly?: boolean | undefined;
|
|
2584
|
-
esModule?: boolean | undefined;
|
|
2585
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2586
|
-
localIdentName?: string | undefined;
|
|
2587
|
-
} | undefined;
|
|
2588
|
-
"css/module"?: {
|
|
2589
|
-
exportsOnly?: boolean | undefined;
|
|
2590
|
-
esModule?: boolean | undefined;
|
|
2591
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2592
|
-
localIdentName?: string | undefined;
|
|
2593
|
-
} | undefined;
|
|
2594
|
-
asset?: {
|
|
2595
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2596
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2597
|
-
emit?: boolean | undefined;
|
|
2598
|
-
dataUrl?: {
|
|
2599
|
-
mimetype?: string | undefined;
|
|
2600
|
-
encoding?: false | "base64" | undefined;
|
|
2601
|
-
} | ((args_0: {
|
|
2602
|
-
filename: string;
|
|
2603
|
-
content: string;
|
|
2604
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2605
|
-
} | undefined;
|
|
2606
|
-
"asset/inline"?: {
|
|
2607
|
-
dataUrl?: {
|
|
2608
|
-
mimetype?: string | undefined;
|
|
2609
|
-
encoding?: false | "base64" | undefined;
|
|
2610
|
-
} | ((args_0: {
|
|
2611
|
-
filename: string;
|
|
2612
|
-
content: string;
|
|
2613
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2614
|
-
} | undefined;
|
|
2615
|
-
"asset/resource"?: {
|
|
2616
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2617
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2618
|
-
emit?: boolean | undefined;
|
|
2619
|
-
} | undefined;
|
|
2620
|
-
}>, z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>]>>;
|
|
2621
|
-
noParse: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>, "many">]>>;
|
|
2622
|
-
}, "strict", z.ZodTypeAny, {
|
|
2623
|
-
parser?: {
|
|
2624
|
-
javascript?: {
|
|
2625
|
-
url?: boolean | "relative" | undefined;
|
|
2626
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2627
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2628
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2629
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2630
|
-
importMeta?: boolean | undefined;
|
|
2631
|
-
exprContextCritical?: boolean | undefined;
|
|
2632
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2633
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2634
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2635
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2636
|
-
strictExportPresence?: boolean | undefined;
|
|
2637
|
-
worker?: boolean | string[] | undefined;
|
|
2638
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2639
|
-
requireAsExpression?: boolean | undefined;
|
|
2640
|
-
requireDynamic?: boolean | undefined;
|
|
2641
|
-
requireResolve?: boolean | undefined;
|
|
2642
|
-
importDynamic?: boolean | undefined;
|
|
2643
|
-
} | undefined;
|
|
2644
|
-
css?: {
|
|
2645
|
-
namedExports?: boolean | undefined;
|
|
2646
|
-
} | undefined;
|
|
2647
|
-
"css/auto"?: {
|
|
2648
|
-
namedExports?: boolean | undefined;
|
|
2649
|
-
} | undefined;
|
|
2650
|
-
"css/module"?: {
|
|
2651
|
-
namedExports?: boolean | undefined;
|
|
2652
|
-
} | undefined;
|
|
2653
|
-
asset?: {
|
|
2654
|
-
dataUrlCondition?: {
|
|
2655
|
-
maxSize?: number | undefined;
|
|
2656
|
-
} | undefined;
|
|
2657
|
-
} | undefined;
|
|
2658
|
-
"javascript/auto"?: {
|
|
2659
|
-
url?: boolean | "relative" | undefined;
|
|
2660
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2661
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2662
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2663
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2664
|
-
importMeta?: boolean | undefined;
|
|
2665
|
-
exprContextCritical?: boolean | undefined;
|
|
2666
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2667
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2668
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2669
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2670
|
-
strictExportPresence?: boolean | undefined;
|
|
2671
|
-
worker?: boolean | string[] | undefined;
|
|
2672
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2673
|
-
requireAsExpression?: boolean | undefined;
|
|
2674
|
-
requireDynamic?: boolean | undefined;
|
|
2675
|
-
requireResolve?: boolean | undefined;
|
|
2676
|
-
importDynamic?: boolean | undefined;
|
|
2677
|
-
} | undefined;
|
|
2678
|
-
"javascript/dynamic"?: {
|
|
2679
|
-
url?: boolean | "relative" | undefined;
|
|
2680
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2681
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2682
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2683
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2684
|
-
importMeta?: boolean | undefined;
|
|
2685
|
-
exprContextCritical?: boolean | undefined;
|
|
2686
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2687
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2688
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2689
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2690
|
-
strictExportPresence?: boolean | undefined;
|
|
2691
|
-
worker?: boolean | string[] | undefined;
|
|
2692
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2693
|
-
requireAsExpression?: boolean | undefined;
|
|
2694
|
-
requireDynamic?: boolean | undefined;
|
|
2695
|
-
requireResolve?: boolean | undefined;
|
|
2696
|
-
importDynamic?: boolean | undefined;
|
|
2697
|
-
} | undefined;
|
|
2698
|
-
"javascript/esm"?: {
|
|
2699
|
-
url?: boolean | "relative" | undefined;
|
|
2700
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2701
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2702
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2703
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2704
|
-
importMeta?: boolean | undefined;
|
|
2705
|
-
exprContextCritical?: boolean | undefined;
|
|
2706
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2707
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2708
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2709
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2710
|
-
strictExportPresence?: boolean | undefined;
|
|
2711
|
-
worker?: boolean | string[] | undefined;
|
|
2712
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2713
|
-
requireAsExpression?: boolean | undefined;
|
|
2714
|
-
requireDynamic?: boolean | undefined;
|
|
2715
|
-
requireResolve?: boolean | undefined;
|
|
2716
|
-
importDynamic?: boolean | undefined;
|
|
2717
|
-
} | undefined;
|
|
2718
|
-
} | Record<string, Record<string, any>> | undefined;
|
|
2719
|
-
generator?: Record<string, Record<string, any>> | {
|
|
2720
|
-
css?: {
|
|
2721
|
-
exportsOnly?: boolean | undefined;
|
|
2722
|
-
esModule?: boolean | undefined;
|
|
2723
|
-
} | undefined;
|
|
2724
|
-
"css/auto"?: {
|
|
2725
|
-
exportsOnly?: boolean | undefined;
|
|
2726
|
-
esModule?: boolean | undefined;
|
|
2727
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2728
|
-
localIdentName?: string | undefined;
|
|
2729
|
-
} | undefined;
|
|
2730
|
-
"css/module"?: {
|
|
2731
|
-
exportsOnly?: boolean | undefined;
|
|
2732
|
-
esModule?: boolean | undefined;
|
|
2733
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2734
|
-
localIdentName?: string | undefined;
|
|
2735
|
-
} | undefined;
|
|
2736
|
-
asset?: {
|
|
2737
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2738
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2739
|
-
emit?: boolean | undefined;
|
|
2740
|
-
dataUrl?: {
|
|
2741
|
-
mimetype?: string | undefined;
|
|
2742
|
-
encoding?: false | "base64" | undefined;
|
|
2743
|
-
} | ((args_0: {
|
|
2744
|
-
filename: string;
|
|
2745
|
-
content: string;
|
|
2746
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2747
|
-
} | undefined;
|
|
2748
|
-
"asset/inline"?: {
|
|
2749
|
-
dataUrl?: {
|
|
2750
|
-
mimetype?: string | undefined;
|
|
2751
|
-
encoding?: false | "base64" | undefined;
|
|
2752
|
-
} | ((args_0: {
|
|
2753
|
-
filename: string;
|
|
2754
|
-
content: string;
|
|
2755
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2756
|
-
} | undefined;
|
|
2757
|
-
"asset/resource"?: {
|
|
2758
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2759
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2760
|
-
emit?: boolean | undefined;
|
|
2761
|
-
} | undefined;
|
|
2762
|
-
} | undefined;
|
|
2763
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
2764
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
2765
|
-
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
2766
|
-
}, {
|
|
2767
|
-
parser?: {
|
|
2768
|
-
javascript?: {
|
|
2769
|
-
url?: boolean | "relative" | undefined;
|
|
2770
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2771
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2772
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2773
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2774
|
-
importMeta?: boolean | undefined;
|
|
2775
|
-
exprContextCritical?: boolean | undefined;
|
|
2776
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2777
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2778
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2779
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2780
|
-
strictExportPresence?: boolean | undefined;
|
|
2781
|
-
worker?: boolean | string[] | undefined;
|
|
2782
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2783
|
-
requireAsExpression?: boolean | undefined;
|
|
2784
|
-
requireDynamic?: boolean | undefined;
|
|
2785
|
-
requireResolve?: boolean | undefined;
|
|
2786
|
-
importDynamic?: boolean | undefined;
|
|
2787
|
-
} | undefined;
|
|
2788
|
-
css?: {
|
|
2789
|
-
namedExports?: boolean | undefined;
|
|
2790
|
-
} | undefined;
|
|
2791
|
-
"css/auto"?: {
|
|
2792
|
-
namedExports?: boolean | undefined;
|
|
2793
|
-
} | undefined;
|
|
2794
|
-
"css/module"?: {
|
|
2795
|
-
namedExports?: boolean | undefined;
|
|
2796
|
-
} | undefined;
|
|
2797
|
-
asset?: {
|
|
2798
|
-
dataUrlCondition?: {
|
|
2799
|
-
maxSize?: number | undefined;
|
|
2800
|
-
} | undefined;
|
|
2801
|
-
} | undefined;
|
|
2802
|
-
"javascript/auto"?: {
|
|
2803
|
-
url?: boolean | "relative" | undefined;
|
|
2804
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2805
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2806
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2807
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2808
|
-
importMeta?: boolean | undefined;
|
|
2809
|
-
exprContextCritical?: boolean | undefined;
|
|
2810
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2811
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2812
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2813
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2814
|
-
strictExportPresence?: boolean | undefined;
|
|
2815
|
-
worker?: boolean | string[] | undefined;
|
|
2816
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2817
|
-
requireAsExpression?: boolean | undefined;
|
|
2818
|
-
requireDynamic?: boolean | undefined;
|
|
2819
|
-
requireResolve?: boolean | undefined;
|
|
2820
|
-
importDynamic?: boolean | undefined;
|
|
2821
|
-
} | undefined;
|
|
2822
|
-
"javascript/dynamic"?: {
|
|
2823
|
-
url?: boolean | "relative" | undefined;
|
|
2824
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2825
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2826
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2827
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2828
|
-
importMeta?: boolean | undefined;
|
|
2829
|
-
exprContextCritical?: boolean | undefined;
|
|
2830
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2831
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2832
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2833
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2834
|
-
strictExportPresence?: boolean | undefined;
|
|
2835
|
-
worker?: boolean | string[] | undefined;
|
|
2836
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2837
|
-
requireAsExpression?: boolean | undefined;
|
|
2838
|
-
requireDynamic?: boolean | undefined;
|
|
2839
|
-
requireResolve?: boolean | undefined;
|
|
2840
|
-
importDynamic?: boolean | undefined;
|
|
2841
|
-
} | undefined;
|
|
2842
|
-
"javascript/esm"?: {
|
|
2843
|
-
url?: boolean | "relative" | undefined;
|
|
2844
|
-
dynamicImportMode?: "eager" | "lazy" | "weak" | "lazy-once" | undefined;
|
|
2845
|
-
dynamicImportPreload?: number | boolean | undefined;
|
|
2846
|
-
dynamicImportPrefetch?: number | boolean | undefined;
|
|
2847
|
-
dynamicImportFetchPriority?: "auto" | "low" | "high" | undefined;
|
|
2848
|
-
importMeta?: boolean | undefined;
|
|
2849
|
-
exprContextCritical?: boolean | undefined;
|
|
2850
|
-
wrappedContextCritical?: boolean | undefined;
|
|
2851
|
-
exportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2852
|
-
importExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2853
|
-
reexportExportsPresence?: false | "auto" | "error" | "warn" | undefined;
|
|
2854
|
-
strictExportPresence?: boolean | undefined;
|
|
2855
|
-
worker?: boolean | string[] | undefined;
|
|
2856
|
-
overrideStrict?: "strict" | "non-strict" | undefined;
|
|
2857
|
-
requireAsExpression?: boolean | undefined;
|
|
2858
|
-
requireDynamic?: boolean | undefined;
|
|
2859
|
-
requireResolve?: boolean | undefined;
|
|
2860
|
-
importDynamic?: boolean | undefined;
|
|
2861
|
-
} | undefined;
|
|
2862
|
-
} | Record<string, Record<string, any>> | undefined;
|
|
2863
|
-
generator?: Record<string, Record<string, any>> | {
|
|
2864
|
-
css?: {
|
|
2865
|
-
exportsOnly?: boolean | undefined;
|
|
2866
|
-
esModule?: boolean | undefined;
|
|
2867
|
-
} | undefined;
|
|
2868
|
-
"css/auto"?: {
|
|
2869
|
-
exportsOnly?: boolean | undefined;
|
|
2870
|
-
esModule?: boolean | undefined;
|
|
2871
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2872
|
-
localIdentName?: string | undefined;
|
|
2873
|
-
} | undefined;
|
|
2874
|
-
"css/module"?: {
|
|
2875
|
-
exportsOnly?: boolean | undefined;
|
|
2876
|
-
esModule?: boolean | undefined;
|
|
2877
|
-
exportsConvention?: "as-is" | "camel-case" | "camel-case-only" | "dashes" | "dashes-only" | undefined;
|
|
2878
|
-
localIdentName?: string | undefined;
|
|
2879
|
-
} | undefined;
|
|
2880
|
-
asset?: {
|
|
2881
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2882
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2883
|
-
emit?: boolean | undefined;
|
|
2884
|
-
dataUrl?: {
|
|
2885
|
-
mimetype?: string | undefined;
|
|
2886
|
-
encoding?: false | "base64" | undefined;
|
|
2887
|
-
} | ((args_0: {
|
|
2888
|
-
filename: string;
|
|
2889
|
-
content: string;
|
|
2890
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2891
|
-
} | undefined;
|
|
2892
|
-
"asset/inline"?: {
|
|
2893
|
-
dataUrl?: {
|
|
2894
|
-
mimetype?: string | undefined;
|
|
2895
|
-
encoding?: false | "base64" | undefined;
|
|
2896
|
-
} | ((args_0: {
|
|
2897
|
-
filename: string;
|
|
2898
|
-
content: string;
|
|
2899
|
-
}, ...args_1: unknown[]) => string) | undefined;
|
|
2900
|
-
} | undefined;
|
|
2901
|
-
"asset/resource"?: {
|
|
2902
|
-
filename?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2903
|
-
publicPath?: string | ((args_0: PathData, args_1: JsAssetInfo | undefined, ...args_2: unknown[]) => string) | undefined;
|
|
2904
|
-
emit?: boolean | undefined;
|
|
2905
|
-
} | undefined;
|
|
2906
|
-
} | undefined;
|
|
2907
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
2908
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
2909
|
-
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
2910
|
-
}>;
|
|
2911
|
-
export type ModuleOptions = z.infer<typeof moduleOptions>;
|
|
2912
276
|
declare const target: z.ZodUnion<[z.ZodLiteral<false>, z.ZodUnion<[z.ZodEnum<["web", "webworker", "es3", "es5", "es2015", "es2016", "es2017", "es2018", "es2019", "es2020", "es2021", "es2022"]>, z.ZodLiteral<"node">, z.ZodLiteral<"async-node">, z.ZodType<`node${number}`, z.ZodTypeDef, `node${number}`>, z.ZodType<`async-node${number}`, z.ZodTypeDef, `async-node${number}`>, z.ZodType<`node${number}.${number}`, z.ZodTypeDef, `node${number}.${number}`>, z.ZodType<`async-node${number}.${number}`, z.ZodTypeDef, `async-node${number}.${number}`>, z.ZodLiteral<"electron-main">, z.ZodType<`electron${number}-main`, z.ZodTypeDef, `electron${number}-main`>, z.ZodType<`electron${number}.${number}-main`, z.ZodTypeDef, `electron${number}.${number}-main`>, z.ZodLiteral<"electron-renderer">, z.ZodType<`electron${number}-renderer`, z.ZodTypeDef, `electron${number}-renderer`>, z.ZodType<`electron${number}.${number}-renderer`, z.ZodTypeDef, `electron${number}.${number}-renderer`>, z.ZodLiteral<"electron-preload">, z.ZodType<`electron${number}-preload`, z.ZodTypeDef, `electron${number}-preload`>, z.ZodType<`electron${number}.${number}-preload`, z.ZodTypeDef, `electron${number}.${number}-preload`>, z.ZodLiteral<"nwjs">, z.ZodType<`nwjs${number}`, z.ZodTypeDef, `nwjs${number}`>, z.ZodType<`nwjs${number}.${number}`, z.ZodTypeDef, `nwjs${number}.${number}`>, z.ZodLiteral<"node-webkit">, z.ZodType<`node-webkit${number}`, z.ZodTypeDef, `node-webkit${number}`>, z.ZodType<`node-webkit${number}.${number}`, z.ZodTypeDef, `node-webkit${number}.${number}`>, z.ZodLiteral<"browserslist">, z.ZodType<`browserslist:${string}`, z.ZodTypeDef, `browserslist:${string}`>]>, z.ZodArray<z.ZodUnion<[z.ZodEnum<["web", "webworker", "es3", "es5", "es2015", "es2016", "es2017", "es2018", "es2019", "es2020", "es2021", "es2022"]>, z.ZodLiteral<"node">, z.ZodLiteral<"async-node">, z.ZodType<`node${number}`, z.ZodTypeDef, `node${number}`>, z.ZodType<`async-node${number}`, z.ZodTypeDef, `async-node${number}`>, z.ZodType<`node${number}.${number}`, z.ZodTypeDef, `node${number}.${number}`>, z.ZodType<`async-node${number}.${number}`, z.ZodTypeDef, `async-node${number}.${number}`>, z.ZodLiteral<"electron-main">, z.ZodType<`electron${number}-main`, z.ZodTypeDef, `electron${number}-main`>, z.ZodType<`electron${number}.${number}-main`, z.ZodTypeDef, `electron${number}.${number}-main`>, z.ZodLiteral<"electron-renderer">, z.ZodType<`electron${number}-renderer`, z.ZodTypeDef, `electron${number}-renderer`>, z.ZodType<`electron${number}.${number}-renderer`, z.ZodTypeDef, `electron${number}.${number}-renderer`>, z.ZodLiteral<"electron-preload">, z.ZodType<`electron${number}-preload`, z.ZodTypeDef, `electron${number}-preload`>, z.ZodType<`electron${number}.${number}-preload`, z.ZodTypeDef, `electron${number}.${number}-preload`>, z.ZodLiteral<"nwjs">, z.ZodType<`nwjs${number}`, z.ZodTypeDef, `nwjs${number}`>, z.ZodType<`nwjs${number}.${number}`, z.ZodTypeDef, `nwjs${number}.${number}`>, z.ZodLiteral<"node-webkit">, z.ZodType<`node-webkit${number}`, z.ZodTypeDef, `node-webkit${number}`>, z.ZodType<`node-webkit${number}.${number}`, z.ZodTypeDef, `node-webkit${number}.${number}`>, z.ZodLiteral<"browserslist">, z.ZodType<`browserslist:${string}`, z.ZodTypeDef, `browserslist:${string}`>]>, "many">]>;
|
|
2913
277
|
export type Target = z.infer<typeof target>;
|
|
2914
278
|
export declare const externalsType: z.ZodEnum<["var", "module", "assign", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system", "promise", "import", "module-import", "script", "node-commonjs"]>;
|
|
@@ -5733,8 +3097,8 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
5733
3097
|
plugins: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodType<t.RspackPluginInstance | t.WebpackPluginInstance | t.RspackPluginFunction | t.WebpackPluginFunction, z.ZodTypeDef, t.RspackPluginInstance | t.WebpackPluginInstance | t.RspackPluginFunction | t.WebpackPluginFunction>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
5734
3098
|
devServer: z.ZodOptional<z.ZodType<DevServer, z.ZodTypeDef, DevServer>>;
|
|
5735
3099
|
module: z.ZodOptional<z.ZodObject<{
|
|
5736
|
-
defaultRules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<RuleSetRule, z.ZodTypeDef, RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
5737
|
-
rules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<RuleSetRule, z.ZodTypeDef, RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
3100
|
+
defaultRules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<t.RuleSetRule, z.ZodTypeDef, t.RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
3101
|
+
rules: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"...">, z.ZodType<t.RuleSetRule, z.ZodTypeDef, t.RuleSetRule>]>, z.ZodUnion<[z.ZodLiteral<false>, z.ZodLiteral<0>, z.ZodLiteral<"">, z.ZodNull, z.ZodUndefined]>]>, "many">>;
|
|
5738
3102
|
parser: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5739
3103
|
asset: z.ZodOptional<z.ZodObject<{
|
|
5740
3104
|
dataUrlCondition: z.ZodOptional<z.ZodObject<{
|
|
@@ -6566,8 +3930,8 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6566
3930
|
emit?: boolean | undefined;
|
|
6567
3931
|
} | undefined;
|
|
6568
3932
|
} | undefined;
|
|
6569
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
6570
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
3933
|
+
rules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
3934
|
+
defaultRules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
6571
3935
|
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
6572
3936
|
}, {
|
|
6573
3937
|
parser?: {
|
|
@@ -6710,8 +4074,8 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6710
4074
|
emit?: boolean | undefined;
|
|
6711
4075
|
} | undefined;
|
|
6712
4076
|
} | undefined;
|
|
6713
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
6714
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
4077
|
+
rules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
4078
|
+
defaultRules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
6715
4079
|
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
6716
4080
|
}>>;
|
|
6717
4081
|
profile: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6876,8 +4240,8 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
6876
4240
|
emit?: boolean | undefined;
|
|
6877
4241
|
} | undefined;
|
|
6878
4242
|
} | undefined;
|
|
6879
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
6880
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
4243
|
+
rules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
4244
|
+
defaultRules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
6881
4245
|
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
6882
4246
|
} | undefined;
|
|
6883
4247
|
name?: string | undefined;
|
|
@@ -7474,8 +4838,8 @@ export declare const rspackOptions: z.ZodObject<{
|
|
|
7474
4838
|
emit?: boolean | undefined;
|
|
7475
4839
|
} | undefined;
|
|
7476
4840
|
} | undefined;
|
|
7477
|
-
rules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
7478
|
-
defaultRules?: (false | "" | 0 | "..." | RuleSetRule | null | undefined)[] | undefined;
|
|
4841
|
+
rules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
4842
|
+
defaultRules?: (false | "" | 0 | "..." | t.RuleSetRule | null | undefined)[] | undefined;
|
|
7479
4843
|
noParse?: string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean) | (string | RegExp | ((args_0: string, ...args_1: unknown[]) => boolean))[] | undefined;
|
|
7480
4844
|
} | undefined;
|
|
7481
4845
|
name?: string | undefined;
|