@rspack-canary/browser 1.4.12-canary-c9012b88-20250801081627 → 1.4.12-canary-d2f8a578-20250801090118

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.
Files changed (246) hide show
  1. package/dist/BuildInfo.d.ts +17 -0
  2. package/dist/Chunk.d.ts +16 -0
  3. package/dist/ChunkGraph.d.ts +9 -0
  4. package/dist/Chunks.d.ts +12 -0
  5. package/dist/CodeGenerationResults.d.ts +1 -0
  6. package/dist/Compilation.d.ts +420 -0
  7. package/dist/Compiler.d.ts +192 -0
  8. package/dist/ConcatenatedModule.d.ts +1 -0
  9. package/dist/ContextModule.d.ts +1 -0
  10. package/dist/ContextModuleFactory.d.ts +13 -0
  11. package/dist/Diagnostics.d.ts +7 -0
  12. package/dist/Entrypoint.d.ts +2 -0
  13. package/dist/ErrorHelpers.d.ts +3 -0
  14. package/dist/ExecuteModulePlugin.d.ts +4 -0
  15. package/dist/ExportsInfo.d.ts +20 -0
  16. package/dist/ExternalModule.d.ts +1 -0
  17. package/dist/FileSystem.d.ts +54 -0
  18. package/dist/FileSystemInfo.d.ts +5 -0
  19. package/dist/Module.d.ts +53 -0
  20. package/dist/ModuleGraph.d.ts +19 -0
  21. package/dist/ModuleTypeConstants.d.ts +8 -0
  22. package/dist/MultiCompiler.d.ts +78 -0
  23. package/dist/MultiStats.d.ts +22 -0
  24. package/dist/MultiWatching.d.ts +27 -0
  25. package/dist/NativeWatchFileSystem.d.ts +17 -0
  26. package/dist/NormalModule.d.ts +15 -0
  27. package/dist/NormalModuleFactory.d.ts +23 -0
  28. package/dist/Resolver.d.ts +24 -0
  29. package/dist/ResolverFactory.d.ts +14 -0
  30. package/dist/RspackError.d.ts +9 -0
  31. package/dist/RuleSetCompiler.d.ts +9 -0
  32. package/dist/RuntimeGlobals.d.ts +325 -0
  33. package/dist/RuntimeModule.d.ts +32 -0
  34. package/dist/Stats.d.ts +17 -0
  35. package/dist/Template.d.ts +77 -0
  36. package/dist/Watching.d.ts +47 -0
  37. package/dist/browser/buffer.d.ts +1 -0
  38. package/dist/browser/fs.d.ts +12 -0
  39. package/dist/browser/index.d.ts +5 -0
  40. package/dist/browser/service.d.ts +3 -0
  41. package/dist/builtin-loader/index.d.ts +1 -0
  42. package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
  43. package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
  44. package/dist/builtin-loader/swc/index.d.ts +5 -0
  45. package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
  46. package/dist/builtin-loader/swc/types.d.ts +83 -0
  47. package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
  48. package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
  49. package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
  50. package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
  51. package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
  52. package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
  53. package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
  54. package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
  55. package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
  56. package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
  57. package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
  58. package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
  59. package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
  60. package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
  61. package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
  62. package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +8 -0
  63. package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +8 -0
  64. package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
  65. package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
  66. package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
  67. package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
  68. package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
  69. package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
  70. package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
  71. package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
  72. package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
  73. package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
  74. package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
  75. package/dist/builtin-plugin/ExternalsPlugin.d.ts +11 -0
  76. package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
  77. package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
  78. package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
  79. package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
  80. package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +10 -0
  81. package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
  82. package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
  83. package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
  84. package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
  85. package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
  86. package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
  87. package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
  88. package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
  89. package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
  90. package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
  91. package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
  92. package/dist/builtin-plugin/MangleExportsPlugin.d.ts +10 -0
  93. package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
  94. package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
  95. package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +8 -0
  96. package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
  97. package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
  98. package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
  99. package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +8 -0
  100. package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +8 -0
  101. package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
  102. package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
  103. package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
  104. package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
  105. package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
  106. package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
  107. package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
  108. package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
  109. package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
  110. package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
  111. package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
  112. package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
  113. package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
  114. package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
  115. package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
  116. package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
  117. package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
  118. package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +40 -0
  119. package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +214 -0
  120. package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
  121. package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
  122. package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
  123. package/dist/builtin-plugin/base.d.ts +45 -0
  124. package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
  125. package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
  126. package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
  127. package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
  128. package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
  129. package/dist/builtin-plugin/html-plugin/options.d.ts +83 -0
  130. package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
  131. package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
  132. package/dist/builtin-plugin/index.d.ts +80 -0
  133. package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +24 -0
  134. package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
  135. package/dist/config/adapter.d.ts +8 -0
  136. package/dist/config/adapterRuleUse.d.ts +333 -0
  137. package/dist/config/browserslistTargetHandler.d.ts +15 -0
  138. package/dist/config/defaults.d.ts +13 -0
  139. package/dist/config/devServer.d.ts +207 -0
  140. package/dist/config/index.d.ts +4 -0
  141. package/dist/config/normalization.d.ts +154 -0
  142. package/dist/config/target.d.ts +89 -0
  143. package/dist/config/types.d.ts +2282 -0
  144. package/dist/container/ContainerPlugin.d.ts +40 -0
  145. package/dist/container/ContainerReferencePlugin.d.ts +33 -0
  146. package/dist/container/ModuleFederationPlugin.d.ts +13 -0
  147. package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
  148. package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
  149. package/dist/container/index.d.ts +4 -0
  150. package/dist/container/options.d.ts +3 -0
  151. package/dist/error/ConcurrentCompilationError.d.ts +14 -0
  152. package/dist/exports.d.ts +166 -0
  153. package/dist/index.d.ts +10 -0
  154. package/dist/index.mjs +57013 -0
  155. package/dist/index.mjs.LICENSE.txt +10 -0
  156. package/dist/lib/AbstractMethodError.d.ts +23 -0
  157. package/dist/lib/Cache.d.ts +65 -0
  158. package/dist/lib/CacheFacade.d.ts +139 -0
  159. package/dist/lib/DllPlugin.d.ts +42 -0
  160. package/dist/lib/DllReferencePlugin.d.ts +119 -0
  161. package/dist/lib/EntryOptionPlugin.d.ts +33 -0
  162. package/dist/lib/EnvironmentPlugin.d.ts +22 -0
  163. package/dist/lib/HookWebpackError.d.ts +40 -0
  164. package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
  165. package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
  166. package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
  167. package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
  168. package/dist/lib/NormalModuleReplacementPlugin.d.ts +29 -0
  169. package/dist/lib/WebpackError.d.ts +21 -0
  170. package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
  171. package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
  172. package/dist/lib/cache/mergeEtags.d.ts +17 -0
  173. package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
  174. package/dist/loader-runner/ModuleError.d.ts +7 -0
  175. package/dist/loader-runner/ModuleWarning.d.ts +7 -0
  176. package/dist/loader-runner/index.d.ts +34 -0
  177. package/dist/loader-runner/loadLoader.d.ts +12 -0
  178. package/dist/loader-runner/service.d.ts +71 -0
  179. package/dist/loader-runner/utils.d.ts +7 -0
  180. package/dist/loader-runner/worker.d.ts +14 -0
  181. package/dist/logging/Logger.d.ts +61 -0
  182. package/dist/logging/createConsoleLogger.d.ts +35 -0
  183. package/dist/logging/truncateArgs.d.ts +16 -0
  184. package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
  185. package/dist/node/NodeTemplatePlugin.d.ts +18 -0
  186. package/dist/node/NodeWatchFileSystem.d.ts +18 -0
  187. package/dist/node/nodeConsole.d.ts +15 -0
  188. package/dist/rspack.d.ts +16 -0
  189. package/dist/rspack.wasi-browser.js +101 -0
  190. package/dist/rspackOptionsApply.d.ts +4 -0
  191. package/dist/runtime/cssExtractHmr.d.ts +4 -0
  192. package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
  193. package/dist/schema/config.d.ts +995 -0
  194. package/dist/schema/loaders.d.ts +399 -0
  195. package/dist/schema/plugins.d.ts +166 -0
  196. package/dist/schema/utils.d.ts +3 -0
  197. package/dist/schema/validate.d.ts +9 -0
  198. package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
  199. package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
  200. package/dist/sharing/SharePlugin.d.ts +51 -0
  201. package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
  202. package/dist/sharing/utils.d.ts +1 -0
  203. package/dist/stats/DefaultStatsFactoryPlugin.d.ts +4 -0
  204. package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
  205. package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
  206. package/dist/stats/StatsFactory.d.ts +57 -0
  207. package/dist/stats/StatsPrinter.d.ts +57 -0
  208. package/dist/stats/statsFactoryUtils.d.ts +325 -0
  209. package/dist/swc.d.ts +7 -0
  210. package/dist/taps/compilation.d.ts +8 -0
  211. package/dist/taps/compiler.d.ts +2 -0
  212. package/dist/taps/contextModuleFactory.d.ts +2 -0
  213. package/dist/taps/index.d.ts +6 -0
  214. package/dist/taps/javascriptModules.d.ts +2 -0
  215. package/dist/taps/normalModuleFactory.d.ts +2 -0
  216. package/dist/taps/types.d.ts +11 -0
  217. package/dist/trace/index.d.ts +46 -0
  218. package/dist/trace/traceHookPlugin.d.ts +5 -0
  219. package/dist/util/ArrayQueue.d.ts +45 -0
  220. package/dist/util/AsyncTask.d.ts +7 -0
  221. package/dist/util/MergeCaller.d.ts +10 -0
  222. package/dist/util/SizeFormatHelpers.d.ts +10 -0
  223. package/dist/util/SplitChunkSize.d.ts +5 -0
  224. package/dist/util/assertNotNil.d.ts +1 -0
  225. package/dist/util/assetCondition.d.ts +2 -0
  226. package/dist/util/asyncLib.d.ts +54 -0
  227. package/dist/util/bindingVersionCheck.d.ts +5 -0
  228. package/dist/util/cleverMerge.d.ts +24 -0
  229. package/dist/util/comparators.d.ts +16 -0
  230. package/dist/util/createHash.d.ts +16 -0
  231. package/dist/util/createReadonlyMap.d.ts +1 -0
  232. package/dist/util/fake.d.ts +9 -0
  233. package/dist/util/fs.d.ts +352 -0
  234. package/dist/util/hash/index.d.ts +26 -0
  235. package/dist/util/hash/md4.d.ts +11 -0
  236. package/dist/util/hash/wasm-hash.d.ts +51 -0
  237. package/dist/util/hash/xxhash64.d.ts +11 -0
  238. package/dist/util/identifier.d.ts +31 -0
  239. package/dist/util/index.d.ts +11 -0
  240. package/dist/util/memoize.d.ts +2 -0
  241. package/dist/util/require.d.ts +3 -0
  242. package/dist/util/runtime.d.ts +2 -0
  243. package/dist/util/smartGrouping.d.ts +21 -0
  244. package/dist/util/source.d.ts +7 -0
  245. package/dist/wasi-worker-browser.mjs +34 -0
  246. package/package.json +3 -3
@@ -0,0 +1,33 @@
1
+ type RawStyleConfig = {
2
+ styleLibraryDirectory?: string;
3
+ custom?: string;
4
+ css?: string;
5
+ bool?: boolean;
6
+ };
7
+ type RawPluginImportConfig = {
8
+ libraryName: string;
9
+ libraryDirectory?: string;
10
+ customName?: string;
11
+ customStyleName?: string;
12
+ style?: RawStyleConfig;
13
+ camelToDashComponentName?: boolean;
14
+ transformToDefaultImport?: boolean;
15
+ ignoreEsComponent?: Array<string>;
16
+ ignoreStyleComponent?: Array<string>;
17
+ };
18
+ type PluginImportConfig = {
19
+ libraryName: string;
20
+ libraryDirectory?: string;
21
+ customName?: string;
22
+ customStyleName?: string;
23
+ style?: string | boolean;
24
+ styleLibraryDirectory?: string;
25
+ camelToDashComponentName?: boolean;
26
+ transformToDefaultImport?: boolean;
27
+ ignoreEsComponent?: string[];
28
+ ignoreStyleComponent?: string[];
29
+ };
30
+ type PluginImportOptions = PluginImportConfig[];
31
+ declare function resolvePluginImport(pluginImport: PluginImportOptions): RawPluginImportConfig[] | undefined;
32
+ export { resolvePluginImport };
33
+ export type { PluginImportOptions };
@@ -0,0 +1,83 @@
1
+ import type { Config, EnvConfig, EsParserConfig, JscConfig, ModuleConfig, ParserConfig, TerserEcmaVersion, TransformConfig, TsParserConfig } from "@swc/types";
2
+ import type { CollectTypeScriptInfoOptions } from "./collectTypeScriptInfo";
3
+ import type { PluginImportOptions } from "./pluginImport";
4
+ export type SwcLoaderEnvConfig = EnvConfig;
5
+ export type SwcLoaderJscConfig = JscConfig;
6
+ export type SwcLoaderModuleConfig = ModuleConfig;
7
+ export type SwcLoaderParserConfig = ParserConfig;
8
+ export type SwcLoaderEsParserConfig = EsParserConfig;
9
+ export type SwcLoaderTsParserConfig = TsParserConfig;
10
+ export type SwcLoaderTransformConfig = TransformConfig;
11
+ export type SwcLoaderOptions = Config & {
12
+ isModule?: boolean | "unknown";
13
+ /**
14
+ * Experimental features provided by Rspack.
15
+ * @experimental
16
+ */
17
+ rspackExperiments?: {
18
+ import?: PluginImportOptions;
19
+ /**
20
+ * Collects information from TypeScript's AST for consumption by subsequent Rspack processes,
21
+ * providing better TypeScript development experience and smaller output bundle size.
22
+ */
23
+ collectTypeScriptInfo?: CollectTypeScriptInfoOptions;
24
+ };
25
+ };
26
+ export interface TerserCompressOptions {
27
+ arguments?: boolean;
28
+ arrows?: boolean;
29
+ booleans?: boolean;
30
+ booleans_as_integers?: boolean;
31
+ collapse_vars?: boolean;
32
+ comparisons?: boolean;
33
+ computed_props?: boolean;
34
+ conditionals?: boolean;
35
+ dead_code?: boolean;
36
+ defaults?: boolean;
37
+ directives?: boolean;
38
+ drop_console?: boolean;
39
+ drop_debugger?: boolean;
40
+ ecma?: TerserEcmaVersion;
41
+ evaluate?: boolean;
42
+ expression?: boolean;
43
+ global_defs?: any;
44
+ hoist_funs?: boolean;
45
+ hoist_props?: boolean;
46
+ hoist_vars?: boolean;
47
+ ie8?: boolean;
48
+ if_return?: boolean;
49
+ inline?: 0 | 1 | 2 | 3;
50
+ join_vars?: boolean;
51
+ keep_classnames?: boolean;
52
+ keep_fargs?: boolean;
53
+ keep_fnames?: boolean;
54
+ keep_infinity?: boolean;
55
+ loops?: boolean;
56
+ negate_iife?: boolean;
57
+ passes?: number;
58
+ properties?: boolean;
59
+ pure_getters?: any;
60
+ pure_funcs?: string[];
61
+ reduce_funcs?: boolean;
62
+ reduce_vars?: boolean;
63
+ sequences?: any;
64
+ side_effects?: boolean;
65
+ switches?: boolean;
66
+ top_retain?: any;
67
+ toplevel?: any;
68
+ typeofs?: boolean;
69
+ unsafe?: boolean;
70
+ unsafe_passes?: boolean;
71
+ unsafe_arrows?: boolean;
72
+ unsafe_comps?: boolean;
73
+ unsafe_function?: boolean;
74
+ unsafe_math?: boolean;
75
+ unsafe_symbols?: boolean;
76
+ unsafe_methods?: boolean;
77
+ unsafe_proto?: boolean;
78
+ unsafe_regexp?: boolean;
79
+ unsafe_undefined?: boolean;
80
+ unused?: boolean;
81
+ const_to_let?: boolean;
82
+ module?: boolean;
83
+ }
@@ -0,0 +1,9 @@
1
+ export declare const APIPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const ArrayPushCallbackChunkFormatPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const AssetModulesPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const AsyncWebAssemblyModulesPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,40 @@
1
+ import { type Chunk } from "@rspack/binding";
2
+ export type Rule = string | RegExp;
3
+ export type Rules = Rule[] | Rule;
4
+ export type BannerFunction = (args: {
5
+ hash: string;
6
+ chunk: Chunk;
7
+ filename: string;
8
+ }) => string;
9
+ export type BannerContent = string | BannerFunction;
10
+ export type BannerPluginOptions = {
11
+ /** Specifies the banner, it will be wrapped in a comment. */
12
+ banner: BannerContent;
13
+ /** If true, the banner will only be added to the entry chunks. */
14
+ entryOnly?: boolean;
15
+ /** Exclude all modules matching any of these conditions. */
16
+ exclude?: Rules;
17
+ /** Include all modules matching any of these conditions. */
18
+ include?: Rules;
19
+ /** If true, banner will not be wrapped in a comment. */
20
+ raw?: boolean;
21
+ /** If true, banner will be placed at the end of the output. */
22
+ footer?: boolean;
23
+ /**
24
+ * The stage of the compilation in which the banner should be injected.
25
+ * @default PROCESS_ASSETS_STAGE_ADDITIONS (-100)
26
+ */
27
+ stage?: number;
28
+ /** Include all modules that pass test assertion. */
29
+ test?: Rules;
30
+ };
31
+ export type BannerPluginArgument = BannerContent | BannerPluginOptions;
32
+ export declare const BannerPlugin: {
33
+ new (args: BannerPluginArgument): {
34
+ name: string;
35
+ _args: [args: BannerPluginArgument];
36
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
37
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
38
+ apply(compiler: import("..").Compiler): void;
39
+ };
40
+ };
@@ -0,0 +1,14 @@
1
+ export type BundleInfoOptions = {
2
+ version?: string;
3
+ bundler?: string;
4
+ force?: boolean | string[];
5
+ };
6
+ export declare const BundlerInfoRspackPlugin: {
7
+ new (options: BundleInfoOptions): {
8
+ name: string;
9
+ _args: [options: BundleInfoOptions];
10
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
11
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
12
+ apply(compiler: import("..").Compiler): void;
13
+ };
14
+ };
@@ -0,0 +1,9 @@
1
+ export declare const ChunkPrefetchPreloadPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,59 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Compilation } from "../Compilation";
3
+ import type { Compiler } from "../Compiler";
4
+ import type { Module } from "../Module";
5
+ import { RspackBuiltinPlugin } from "./base";
6
+ export type CircularDependencyRspackPluginOptions = {
7
+ /**
8
+ * When `true`, the plugin will emit `ERROR` diagnostics rather than the
9
+ * default `WARN` level.
10
+ */
11
+ failOnError?: boolean;
12
+ /**
13
+ * When `true`, asynchronous imports like `import("some-module")` will not
14
+ * be considered connections that can create cycles.
15
+ */
16
+ allowAsyncCycles?: boolean;
17
+ /**
18
+ * Cycles containing any module name that matches this regex will _not_ be
19
+ * counted as a cycle.
20
+ */
21
+ exclude?: RegExp;
22
+ /**
23
+ * List of dependency connections that should not count for creating cycles.
24
+ * Connections are represented as `[from, to]`, where each entry is matched
25
+ * against the _identifier_ for that module in the connection. The
26
+ * identifier contains the full, unique path for the module, including all
27
+ * of the loaders that were applied to it and any request parameters.
28
+ *
29
+ * When an entry is a String, it is tested as a _substring_ of the
30
+ * identifier. For example, the entry "components/Button" would match the
31
+ * module "app/design/components/Button.tsx". When the entry is a RegExp,
32
+ * it is tested against the entire identifier.
33
+ */
34
+ ignoredConnections?: Array<[string | RegExp, string | RegExp]>;
35
+ /**
36
+ * Called once for every detected cycle. Providing this handler overrides the
37
+ * default behavior of adding diagnostics to the compilation.
38
+ */
39
+ onDetected?(entrypoint: Module, modules: string[], compilation: Compilation): void;
40
+ /**
41
+ * Called once for every detected cycle that was ignored because of a rule,
42
+ * either from `exclude` or `ignoredConnections`.
43
+ */
44
+ onIgnored?(entrypoint: Module, modules: string[], compilation: Compilation): void;
45
+ /**
46
+ * Called before cycle detection begins.
47
+ */
48
+ onStart?(compilation: Compilation): void;
49
+ /**
50
+ * Called after cycle detection finishes.
51
+ */
52
+ onEnd?(compilation: Compilation): void;
53
+ };
54
+ export declare class CircularDependencyRspackPlugin extends RspackBuiltinPlugin {
55
+ name: BuiltinPluginName;
56
+ _options: CircularDependencyRspackPluginOptions;
57
+ constructor(options: CircularDependencyRspackPluginOptions);
58
+ raw(compiler: Compiler): BuiltinPlugin;
59
+ }
@@ -0,0 +1,9 @@
1
+ export declare const CommonJsChunkFormatPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const ContextReplacementPlugin: {
2
+ new (resourceRegExp: RegExp, newContentResource?: any, newContentRecursive?: any, newContentRegExp?: any): {
3
+ name: string;
4
+ _args: [resourceRegExp: RegExp, newContentResource?: any, newContentRecursive?: any, newContentRegExp?: any];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,14 @@
1
+ import { type RawCopyPattern } from "@rspack/binding";
2
+ export type CopyRspackPluginOptions = {
3
+ /** An array of objects that describe the copy operations to be performed. */
4
+ patterns: (string | (Pick<RawCopyPattern, "from"> & Partial<Omit<RawCopyPattern, "from">>))[];
5
+ };
6
+ export declare const CopyRspackPlugin: {
7
+ new (copy: CopyRspackPluginOptions): {
8
+ name: string;
9
+ _args: [copy: CopyRspackPluginOptions];
10
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
11
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
12
+ apply(compiler: import("..").Compiler): void;
13
+ };
14
+ };
@@ -0,0 +1,21 @@
1
+ import binding from "@rspack/binding";
2
+ export interface CssChunkingPluginOptions {
3
+ strict?: boolean;
4
+ minSize?: number;
5
+ maxSize?: number;
6
+ /**
7
+ * This plugin is intended to be generic, but currently requires some special handling for Next.js.
8
+ * A `next` option has been added to accommodate this.
9
+ * In the future, once the design of CssChunkingPlugin becomes more stable, this option may be removed.
10
+ */
11
+ nextjs?: boolean;
12
+ }
13
+ export declare const CssChunkingPlugin: {
14
+ new (options?: CssChunkingPluginOptions | undefined): {
15
+ name: string;
16
+ _args: [options?: CssChunkingPluginOptions | undefined];
17
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
18
+ raw(compiler: import("..").Compiler): binding.BuiltinPlugin;
19
+ apply(compiler: import("..").Compiler): void;
20
+ };
21
+ };
@@ -0,0 +1,9 @@
1
+ export declare const CssModulesPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const DataUriPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,16 @@
1
+ export type DefinePluginOptions = Record<string, CodeValue>;
2
+ export declare const DefinePlugin: {
3
+ new (define: DefinePluginOptions): {
4
+ name: string;
5
+ _args: [define: DefinePluginOptions];
6
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
7
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
8
+ apply(compiler: import("..").Compiler): void;
9
+ };
10
+ };
11
+ type CodeValue = RecursiveArrayOrRecord<CodeValuePrimitive>;
12
+ type CodeValuePrimitive = null | undefined | RegExp | Function | string | number | boolean | bigint;
13
+ type RecursiveArrayOrRecord<T> = {
14
+ [index: string]: RecursiveArrayOrRecord<T>;
15
+ } | Array<RecursiveArrayOrRecord<T>> | T;
16
+ export {};
@@ -0,0 +1,8 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Compiler } from "../Compiler";
3
+ import { RspackBuiltinPlugin } from "./base";
4
+ export declare class DeterministicChunkIdsPlugin extends RspackBuiltinPlugin {
5
+ name: BuiltinPluginName;
6
+ affectedHooks: "compilation";
7
+ raw(compiler: Compiler): BuiltinPlugin;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Compiler } from "../Compiler";
3
+ import { RspackBuiltinPlugin } from "./base";
4
+ export declare class DeterministicModuleIdsPlugin extends RspackBuiltinPlugin {
5
+ name: BuiltinPluginName;
6
+ affectedHooks: "compilation";
7
+ raw(compiler: Compiler): BuiltinPlugin;
8
+ }
@@ -0,0 +1,12 @@
1
+ export type DllEntryPluginOptions = {
2
+ name: string;
3
+ };
4
+ export declare const DllEntryPlugin: {
5
+ new (context: string, entries: string[], options: DllEntryPluginOptions): {
6
+ name: string;
7
+ _args: [context: string, entries: string[], options: DllEntryPluginOptions];
8
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
9
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
10
+ apply(compiler: import("..").Compiler): void;
11
+ };
12
+ };
@@ -0,0 +1,11 @@
1
+ import { type RawDllReferenceAgencyPluginOptions } from "@rspack/binding";
2
+ export type DllReferenceAgencyPluginOptions = RawDllReferenceAgencyPluginOptions;
3
+ export declare const DllReferenceAgencyPlugin: {
4
+ new (options: RawDllReferenceAgencyPluginOptions): {
5
+ name: string;
6
+ _args: [options: RawDllReferenceAgencyPluginOptions];
7
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
8
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
9
+ apply(compiler: import("..").Compiler): void;
10
+ };
11
+ };
@@ -0,0 +1,12 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Compiler } from "../Compiler";
3
+ import type { EntryDynamicNormalized } from "../config";
4
+ import { RspackBuiltinPlugin } from "./base";
5
+ export declare class DynamicEntryPlugin extends RspackBuiltinPlugin {
6
+ private context;
7
+ private entry;
8
+ name: BuiltinPluginName;
9
+ affectedHooks: "make";
10
+ constructor(context: string, entry: EntryDynamicNormalized);
11
+ raw(compiler: Compiler): BuiltinPlugin | undefined;
12
+ }
@@ -0,0 +1,9 @@
1
+ export declare const ElectronTargetPlugin: {
2
+ new (context?: string | undefined): {
3
+ name: string;
4
+ _args: [context?: string | undefined];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/3919c84/lib/javascript/EnableChunkLoadingPlugin.js
4
+ *
5
+ * MIT Licensed
6
+ * Author Tobias Koppers @sokra
7
+ * Copyright (c) JS Foundation and other contributors
8
+ * https://github.com/webpack/webpack/blob/main/LICENSE
9
+ */
10
+ import type { ChunkLoadingType, Compiler } from "../exports";
11
+ declare const EnableChunkLoadingPluginInner: {
12
+ new (type: string): {
13
+ name: string;
14
+ _args: [type: string];
15
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
16
+ raw(compiler: Compiler): import("@rspack/binding").BuiltinPlugin;
17
+ apply(compiler: Compiler): void;
18
+ };
19
+ };
20
+ export declare class EnableChunkLoadingPlugin extends EnableChunkLoadingPluginInner {
21
+ static setEnabled(compiler: Compiler, type: ChunkLoadingType): void;
22
+ static checkEnabled(compiler: Compiler, type: ChunkLoadingType): void;
23
+ apply(compiler: Compiler): void;
24
+ }
25
+ export {};
@@ -0,0 +1,11 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Compiler, LibraryType } from "..";
3
+ import { RspackBuiltinPlugin } from "./base";
4
+ export declare class EnableLibraryPlugin extends RspackBuiltinPlugin {
5
+ private type;
6
+ name: BuiltinPluginName;
7
+ constructor(type: LibraryType);
8
+ static setEnabled(compiler: Compiler, type: LibraryType): void;
9
+ static checkEnabled(compiler: Compiler, type: LibraryType): void;
10
+ raw(compiler: Compiler): BuiltinPlugin | undefined;
11
+ }
@@ -0,0 +1,9 @@
1
+ export declare const EnableWasmLoadingPlugin: {
2
+ new (type: string): {
3
+ name: string;
4
+ _args: [type: string];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const EnsureChunkConditionsPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,32 @@
1
+ import { EntryDependency, type JsEntryOptions } from "@rspack/binding";
2
+ import type { EntryDescriptionNormalized } from "../config";
3
+ /**
4
+ * Options for the `EntryPlugin`.
5
+ */
6
+ export type EntryOptions = Omit<EntryDescriptionNormalized, "import"> & {
7
+ /**
8
+ * The name of the entry chunk.
9
+ */
10
+ name?: string;
11
+ };
12
+ /**
13
+ * The entry plugin that will handle creation of the `EntryDependency`.
14
+ * It adds an entry chunk on compilation. The chunk is named `options.name` and
15
+ * contains only one module (plus dependencies). The module is resolved from
16
+ * `entry` in `context` (absolute path).
17
+ */
18
+ declare const OriginEntryPlugin: {
19
+ new (context: string, entry: string, options?: string | EntryOptions | undefined): {
20
+ name: string;
21
+ _args: [context: string, entry: string, options?: string | EntryOptions | undefined];
22
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
23
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
24
+ apply(compiler: import("..").Compiler): void;
25
+ };
26
+ };
27
+ type EntryPluginType = typeof OriginEntryPlugin & {
28
+ createDependency(entry: string): EntryDependency;
29
+ };
30
+ export declare const EntryPlugin: EntryPluginType;
31
+ export declare function getRawEntryOptions(entry: EntryOptions): JsEntryOptions;
32
+ export {};
@@ -0,0 +1,11 @@
1
+ import { type RawEvalDevToolModulePluginOptions } from "@rspack/binding";
2
+ export type { RawEvalDevToolModulePluginOptions as EvalDevToolModulePluginOptions };
3
+ export declare const EvalDevToolModulePlugin: {
4
+ new (options: RawEvalDevToolModulePluginOptions): {
5
+ name: string;
6
+ _args: [options: RawEvalDevToolModulePluginOptions];
7
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
8
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
9
+ apply(compiler: import("..").Compiler): void;
10
+ };
11
+ };
@@ -0,0 +1,10 @@
1
+ import { type SourceMapDevToolPluginOptions } from "@rspack/binding";
2
+ export declare const EvalSourceMapDevToolPlugin: {
3
+ new (options: SourceMapDevToolPluginOptions): {
4
+ name: string;
5
+ _args: [options: SourceMapDevToolPluginOptions];
6
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
7
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
8
+ apply(compiler: import("..").Compiler): void;
9
+ };
10
+ };
@@ -0,0 +1,11 @@
1
+ import { type BuiltinPlugin, BuiltinPluginName } from "@rspack/binding";
2
+ import type { Externals } from "..";
3
+ import { RspackBuiltinPlugin } from "./base";
4
+ export declare class ExternalsPlugin extends RspackBuiltinPlugin {
5
+ #private;
6
+ private type;
7
+ private externals;
8
+ name: BuiltinPluginName;
9
+ constructor(type: string, externals: Externals);
10
+ raw(): BuiltinPlugin | undefined;
11
+ }
@@ -0,0 +1,9 @@
1
+ export declare const FetchCompileAsyncWasmPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };
@@ -0,0 +1,9 @@
1
+ export declare const FileUriPlugin: {
2
+ new (): {
3
+ name: string;
4
+ _args: [];
5
+ affectedHooks: "done" | "compilation" | "afterDone" | "thisCompilation" | "invalid" | "compile" | "normalModuleFactory" | "contextModuleFactory" | "initialize" | "shouldEmit" | "infrastructureLog" | "beforeRun" | "run" | "emit" | "assetEmitted" | "afterEmit" | "failed" | "shutdown" | "watchRun" | "watchClose" | "environment" | "afterEnvironment" | "afterPlugins" | "afterResolvers" | "make" | "beforeCompile" | "afterCompile" | "finishMake" | "entryOption" | "additionalPass" | undefined;
6
+ raw(compiler: import("..").Compiler): import("@rspack/binding").BuiltinPlugin;
7
+ apply(compiler: import("..").Compiler): void;
8
+ };
9
+ };