@rspack/browser 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Compilation.d.ts +2 -2
- package/dist/Compiler.d.ts +1 -1
- package/dist/RuntimeModule.d.ts +3 -1
- package/dist/browser/service.d.ts +1 -1
- package/dist/config/target.d.ts +2 -0
- package/dist/config/types.d.ts +7 -0
- package/dist/index.mjs +4977 -4927
- package/dist/napi-binding.d.ts +8 -0
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/package.json +1 -1
package/dist/napi-binding.d.ts
CHANGED
|
@@ -1205,6 +1205,8 @@ export interface JsRuntimeModule {
|
|
|
1205
1205
|
moduleIdentifier: string
|
|
1206
1206
|
constructorName: string
|
|
1207
1207
|
name: string
|
|
1208
|
+
stage: number
|
|
1209
|
+
isolate: boolean
|
|
1208
1210
|
}
|
|
1209
1211
|
|
|
1210
1212
|
export interface JsRuntimeModuleArg {
|
|
@@ -2337,6 +2339,11 @@ export interface RawJavascriptParserOptions {
|
|
|
2337
2339
|
worker?: Array<string>
|
|
2338
2340
|
overrideStrict?: string
|
|
2339
2341
|
importMeta?: boolean
|
|
2342
|
+
/**
|
|
2343
|
+
* This option is experimental in Rspack only and subject to change or be removed anytime.
|
|
2344
|
+
* @experimental
|
|
2345
|
+
*/
|
|
2346
|
+
requireAlias?: boolean
|
|
2340
2347
|
/**
|
|
2341
2348
|
* This option is experimental in Rspack only and subject to change or be removed anytime.
|
|
2342
2349
|
* @experimental
|
|
@@ -2790,6 +2797,7 @@ export interface RawRstestPluginOptions {
|
|
|
2790
2797
|
importMetaPathName: boolean
|
|
2791
2798
|
hoistMockModule: boolean
|
|
2792
2799
|
manualMockRoot: string
|
|
2800
|
+
preserveNewUrl?: Array<string>
|
|
2793
2801
|
}
|
|
2794
2802
|
|
|
2795
2803
|
export interface RawRuleSetCondition {
|
|
Binary file
|
package/package.json
CHANGED