@rspack/browser 1.5.0-alpha.0

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 (247) hide show
  1. package/LICENSE +22 -0
  2. package/dist/BuildInfo.d.ts +17 -0
  3. package/dist/Chunk.d.ts +16 -0
  4. package/dist/ChunkGraph.d.ts +9 -0
  5. package/dist/Chunks.d.ts +12 -0
  6. package/dist/CodeGenerationResults.d.ts +1 -0
  7. package/dist/Compilation.d.ts +420 -0
  8. package/dist/Compiler.d.ts +192 -0
  9. package/dist/ConcatenatedModule.d.ts +1 -0
  10. package/dist/ContextModule.d.ts +1 -0
  11. package/dist/ContextModuleFactory.d.ts +13 -0
  12. package/dist/Diagnostics.d.ts +7 -0
  13. package/dist/Entrypoint.d.ts +2 -0
  14. package/dist/ErrorHelpers.d.ts +3 -0
  15. package/dist/ExecuteModulePlugin.d.ts +4 -0
  16. package/dist/ExportsInfo.d.ts +20 -0
  17. package/dist/ExternalModule.d.ts +1 -0
  18. package/dist/FileSystem.d.ts +54 -0
  19. package/dist/FileSystemInfo.d.ts +5 -0
  20. package/dist/Module.d.ts +53 -0
  21. package/dist/ModuleGraph.d.ts +19 -0
  22. package/dist/ModuleTypeConstants.d.ts +8 -0
  23. package/dist/MultiCompiler.d.ts +78 -0
  24. package/dist/MultiStats.d.ts +22 -0
  25. package/dist/MultiWatching.d.ts +27 -0
  26. package/dist/NativeWatchFileSystem.d.ts +18 -0
  27. package/dist/NormalModule.d.ts +15 -0
  28. package/dist/NormalModuleFactory.d.ts +23 -0
  29. package/dist/Resolver.d.ts +18 -0
  30. package/dist/ResolverFactory.d.ts +17 -0
  31. package/dist/RspackError.d.ts +9 -0
  32. package/dist/RuleSetCompiler.d.ts +9 -0
  33. package/dist/RuntimeGlobals.d.ts +325 -0
  34. package/dist/RuntimeModule.d.ts +32 -0
  35. package/dist/Stats.d.ts +17 -0
  36. package/dist/Template.d.ts +77 -0
  37. package/dist/Watching.d.ts +47 -0
  38. package/dist/browser/buffer.d.ts +1 -0
  39. package/dist/browser/fs.d.ts +12 -0
  40. package/dist/browser/index.d.ts +5 -0
  41. package/dist/browser/service.d.ts +3 -0
  42. package/dist/builtin-loader/index.d.ts +1 -0
  43. package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
  44. package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
  45. package/dist/builtin-loader/swc/index.d.ts +5 -0
  46. package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
  47. package/dist/builtin-loader/swc/types.d.ts +83 -0
  48. package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
  49. package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
  50. package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
  51. package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
  52. package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
  53. package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
  54. package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
  55. package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
  56. package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
  57. package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
  58. package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
  59. package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
  60. package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
  61. package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
  62. package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
  63. package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +8 -0
  64. package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +8 -0
  65. package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
  66. package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
  67. package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
  68. package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
  69. package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
  70. package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
  71. package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
  72. package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
  73. package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
  74. package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
  75. package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
  76. package/dist/builtin-plugin/ExternalsPlugin.d.ts +11 -0
  77. package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
  78. package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
  79. package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
  80. package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
  81. package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +10 -0
  82. package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
  83. package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
  84. package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
  85. package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
  86. package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
  87. package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
  88. package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
  89. package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
  90. package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
  91. package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
  92. package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
  93. package/dist/builtin-plugin/MangleExportsPlugin.d.ts +10 -0
  94. package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
  95. package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
  96. package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +8 -0
  97. package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
  98. package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
  99. package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
  100. package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +8 -0
  101. package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +8 -0
  102. package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
  103. package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
  104. package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
  105. package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
  106. package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
  107. package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
  108. package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
  109. package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
  110. package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
  111. package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
  112. package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
  113. package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
  114. package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
  115. package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
  116. package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
  117. package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
  118. package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
  119. package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +40 -0
  120. package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +214 -0
  121. package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
  122. package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
  123. package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
  124. package/dist/builtin-plugin/base.d.ts +45 -0
  125. package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
  126. package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
  127. package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
  128. package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
  129. package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
  130. package/dist/builtin-plugin/html-plugin/options.d.ts +83 -0
  131. package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
  132. package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
  133. package/dist/builtin-plugin/index.d.ts +80 -0
  134. package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +24 -0
  135. package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
  136. package/dist/config/adapter.d.ts +8 -0
  137. package/dist/config/adapterRuleUse.d.ts +333 -0
  138. package/dist/config/browserslistTargetHandler.d.ts +15 -0
  139. package/dist/config/defaults.d.ts +13 -0
  140. package/dist/config/devServer.d.ts +207 -0
  141. package/dist/config/index.d.ts +4 -0
  142. package/dist/config/normalization.d.ts +161 -0
  143. package/dist/config/target.d.ts +89 -0
  144. package/dist/config/types.d.ts +2293 -0
  145. package/dist/container/ContainerPlugin.d.ts +40 -0
  146. package/dist/container/ContainerReferencePlugin.d.ts +33 -0
  147. package/dist/container/ModuleFederationPlugin.d.ts +13 -0
  148. package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
  149. package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
  150. package/dist/container/index.d.ts +4 -0
  151. package/dist/container/options.d.ts +3 -0
  152. package/dist/error/ConcurrentCompilationError.d.ts +14 -0
  153. package/dist/exports.d.ts +166 -0
  154. package/dist/index.d.ts +10 -0
  155. package/dist/index.mjs +57114 -0
  156. package/dist/index.mjs.LICENSE.txt +10 -0
  157. package/dist/lib/AbstractMethodError.d.ts +23 -0
  158. package/dist/lib/Cache.d.ts +65 -0
  159. package/dist/lib/CacheFacade.d.ts +139 -0
  160. package/dist/lib/DllPlugin.d.ts +42 -0
  161. package/dist/lib/DllReferencePlugin.d.ts +119 -0
  162. package/dist/lib/EntryOptionPlugin.d.ts +33 -0
  163. package/dist/lib/EnvironmentPlugin.d.ts +22 -0
  164. package/dist/lib/HookWebpackError.d.ts +40 -0
  165. package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
  166. package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
  167. package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
  168. package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
  169. package/dist/lib/NormalModuleReplacementPlugin.d.ts +29 -0
  170. package/dist/lib/WebpackError.d.ts +21 -0
  171. package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
  172. package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
  173. package/dist/lib/cache/mergeEtags.d.ts +17 -0
  174. package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
  175. package/dist/loader-runner/ModuleError.d.ts +7 -0
  176. package/dist/loader-runner/ModuleWarning.d.ts +7 -0
  177. package/dist/loader-runner/index.d.ts +34 -0
  178. package/dist/loader-runner/loadLoader.d.ts +12 -0
  179. package/dist/loader-runner/service.d.ts +71 -0
  180. package/dist/loader-runner/utils.d.ts +7 -0
  181. package/dist/loader-runner/worker.d.ts +14 -0
  182. package/dist/logging/Logger.d.ts +61 -0
  183. package/dist/logging/createConsoleLogger.d.ts +35 -0
  184. package/dist/logging/truncateArgs.d.ts +16 -0
  185. package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
  186. package/dist/node/NodeTemplatePlugin.d.ts +18 -0
  187. package/dist/node/NodeWatchFileSystem.d.ts +18 -0
  188. package/dist/node/nodeConsole.d.ts +15 -0
  189. package/dist/rspack.d.ts +16 -0
  190. package/dist/rspack.wasi-browser.js +101 -0
  191. package/dist/rspackOptionsApply.d.ts +4 -0
  192. package/dist/runtime/cssExtractHmr.d.ts +4 -0
  193. package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
  194. package/dist/schema/config.d.ts +1004 -0
  195. package/dist/schema/loaders.d.ts +399 -0
  196. package/dist/schema/plugins.d.ts +166 -0
  197. package/dist/schema/utils.d.ts +3 -0
  198. package/dist/schema/validate.d.ts +9 -0
  199. package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
  200. package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
  201. package/dist/sharing/SharePlugin.d.ts +51 -0
  202. package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
  203. package/dist/sharing/utils.d.ts +1 -0
  204. package/dist/stats/DefaultStatsFactoryPlugin.d.ts +4 -0
  205. package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
  206. package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
  207. package/dist/stats/StatsFactory.d.ts +57 -0
  208. package/dist/stats/StatsPrinter.d.ts +57 -0
  209. package/dist/stats/statsFactoryUtils.d.ts +325 -0
  210. package/dist/swc.d.ts +7 -0
  211. package/dist/taps/compilation.d.ts +8 -0
  212. package/dist/taps/compiler.d.ts +2 -0
  213. package/dist/taps/contextModuleFactory.d.ts +2 -0
  214. package/dist/taps/index.d.ts +6 -0
  215. package/dist/taps/javascriptModules.d.ts +2 -0
  216. package/dist/taps/normalModuleFactory.d.ts +2 -0
  217. package/dist/taps/types.d.ts +11 -0
  218. package/dist/trace/index.d.ts +46 -0
  219. package/dist/trace/traceHookPlugin.d.ts +5 -0
  220. package/dist/util/ArrayQueue.d.ts +45 -0
  221. package/dist/util/AsyncTask.d.ts +7 -0
  222. package/dist/util/MergeCaller.d.ts +10 -0
  223. package/dist/util/SizeFormatHelpers.d.ts +10 -0
  224. package/dist/util/SplitChunkSize.d.ts +5 -0
  225. package/dist/util/assertNotNil.d.ts +1 -0
  226. package/dist/util/assetCondition.d.ts +2 -0
  227. package/dist/util/asyncLib.d.ts +54 -0
  228. package/dist/util/bindingVersionCheck.d.ts +5 -0
  229. package/dist/util/cleverMerge.d.ts +24 -0
  230. package/dist/util/comparators.d.ts +16 -0
  231. package/dist/util/createHash.d.ts +16 -0
  232. package/dist/util/createReadonlyMap.d.ts +1 -0
  233. package/dist/util/fake.d.ts +9 -0
  234. package/dist/util/fs.d.ts +352 -0
  235. package/dist/util/hash/index.d.ts +26 -0
  236. package/dist/util/hash/md4.d.ts +11 -0
  237. package/dist/util/hash/wasm-hash.d.ts +51 -0
  238. package/dist/util/hash/xxhash64.d.ts +11 -0
  239. package/dist/util/identifier.d.ts +31 -0
  240. package/dist/util/index.d.ts +11 -0
  241. package/dist/util/memoize.d.ts +2 -0
  242. package/dist/util/require.d.ts +3 -0
  243. package/dist/util/runtime.d.ts +2 -0
  244. package/dist/util/smartGrouping.d.ts +21 -0
  245. package/dist/util/source.d.ts +7 -0
  246. package/dist/wasi-worker-browser.mjs +34 -0
  247. package/package.json +50 -0
@@ -0,0 +1,192 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/Compiler.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 binding from "@rspack/binding";
11
+ import * as liteTapable from "@rspack/lite-tapable";
12
+ import type Watchpack from "watchpack";
13
+ import type { Source } from "webpack-sources";
14
+ import type { Chunk } from "./Chunk";
15
+ import type { CompilationParams } from "./Compilation";
16
+ import { Compilation } from "./Compilation";
17
+ import { ContextModuleFactory } from "./ContextModuleFactory";
18
+ import type { EntryNormalized, OutputNormalized, RspackOptionsNormalized, RspackPluginInstance } from "./config";
19
+ import type { FileSystemInfoEntry } from "./FileSystemInfo";
20
+ import { rspack } from "./index";
21
+ import Cache from "./lib/Cache";
22
+ import CacheFacade from "./lib/CacheFacade";
23
+ import { Logger } from "./logging/Logger";
24
+ import { NormalModuleFactory } from "./NormalModuleFactory";
25
+ import { ResolverFactory } from "./ResolverFactory";
26
+ import { RuleSetCompiler } from "./RuleSetCompiler";
27
+ import { Stats } from "./Stats";
28
+ import type { InputFileSystem, IntermediateFileSystem, OutputFileSystem, WatchFileSystem } from "./util/fs";
29
+ import { Watching } from "./Watching";
30
+ export interface AssetEmittedInfo {
31
+ content: Buffer;
32
+ source: Source;
33
+ outputPath: string;
34
+ targetPath: string;
35
+ compilation: Compilation;
36
+ }
37
+ declare class Compiler {
38
+ #private;
39
+ hooks: {
40
+ done: liteTapable.AsyncSeriesHook<Stats>;
41
+ afterDone: liteTapable.SyncHook<Stats>;
42
+ thisCompilation: liteTapable.SyncHook<[Compilation, CompilationParams]>;
43
+ compilation: liteTapable.SyncHook<[Compilation, CompilationParams]>;
44
+ invalid: liteTapable.SyncHook<[string | null, number]>;
45
+ compile: liteTapable.SyncHook<[CompilationParams]>;
46
+ normalModuleFactory: liteTapable.SyncHook<NormalModuleFactory>;
47
+ contextModuleFactory: liteTapable.SyncHook<ContextModuleFactory>;
48
+ initialize: liteTapable.SyncHook<[]>;
49
+ shouldEmit: liteTapable.SyncBailHook<[Compilation], boolean>;
50
+ infrastructureLog: liteTapable.SyncBailHook<[string, string, any[]], true>;
51
+ beforeRun: liteTapable.AsyncSeriesHook<[Compiler]>;
52
+ run: liteTapable.AsyncSeriesHook<[Compiler]>;
53
+ emit: liteTapable.AsyncSeriesHook<[Compilation]>;
54
+ assetEmitted: liteTapable.AsyncSeriesHook<[string, AssetEmittedInfo]>;
55
+ afterEmit: liteTapable.AsyncSeriesHook<[Compilation]>;
56
+ failed: liteTapable.SyncHook<[Error]>;
57
+ shutdown: liteTapable.AsyncSeriesHook<[]>;
58
+ watchRun: liteTapable.AsyncSeriesHook<[Compiler]>;
59
+ watchClose: liteTapable.SyncHook<[]>;
60
+ environment: liteTapable.SyncHook<[]>;
61
+ afterEnvironment: liteTapable.SyncHook<[]>;
62
+ afterPlugins: liteTapable.SyncHook<[Compiler]>;
63
+ afterResolvers: liteTapable.SyncHook<[Compiler]>;
64
+ make: liteTapable.AsyncParallelHook<[Compilation]>;
65
+ beforeCompile: liteTapable.AsyncSeriesHook<[CompilationParams]>;
66
+ afterCompile: liteTapable.AsyncSeriesHook<[Compilation]>;
67
+ finishMake: liteTapable.AsyncSeriesHook<[Compilation]>;
68
+ entryOption: liteTapable.SyncBailHook<[string, EntryNormalized], any>;
69
+ additionalPass: liteTapable.AsyncSeriesHook<[]>;
70
+ };
71
+ webpack: typeof rspack;
72
+ rspack: typeof rspack;
73
+ name?: string;
74
+ parentCompilation?: Compilation;
75
+ root: Compiler;
76
+ outputPath: string;
77
+ running: boolean;
78
+ idle: boolean;
79
+ resolverFactory: ResolverFactory;
80
+ infrastructureLogger: any;
81
+ watching?: Watching;
82
+ inputFileSystem: InputFileSystem | null;
83
+ intermediateFileSystem: IntermediateFileSystem | null;
84
+ outputFileSystem: OutputFileSystem | null;
85
+ watchFileSystem: WatchFileSystem | null;
86
+ records: Record<string, any[]>;
87
+ modifiedFiles?: ReadonlySet<string>;
88
+ removedFiles?: ReadonlySet<string>;
89
+ fileTimestamps?: ReadonlyMap<string, FileSystemInfoEntry | "ignore" | null>;
90
+ contextTimestamps?: ReadonlyMap<string, FileSystemInfoEntry | "ignore" | null>;
91
+ fsStartTime?: number;
92
+ watchMode: boolean;
93
+ context: string;
94
+ cache: Cache;
95
+ compilerPath: string;
96
+ options: RspackOptionsNormalized;
97
+ constructor(context: string, options: RspackOptionsNormalized);
98
+ get recordsInputPath(): never;
99
+ get recordsOutputPath(): never;
100
+ get managedPaths(): never;
101
+ get immutablePaths(): never;
102
+ get _lastCompilation(): Compilation | undefined;
103
+ /**
104
+ * Note: This is not a webpack public API, maybe removed in future.
105
+ * @internal
106
+ */
107
+ get __internal__builtinPlugins(): binding.BuiltinPlugin[];
108
+ /**
109
+ * Note: This is not a webpack public API, maybe removed in future.
110
+ * @internal
111
+ */
112
+ get __internal__ruleSet(): RuleSetCompiler;
113
+ /**
114
+ * @param name - cache name
115
+ * @returns the cache facade instance
116
+ */
117
+ getCache(name: string): CacheFacade;
118
+ /**
119
+ * @param name - name of the logger, or function called once to get the logger name
120
+ * @returns a logger with that name
121
+ */
122
+ getInfrastructureLogger(name: string | (() => string)): Logger;
123
+ /**
124
+ * @param watchOptions - the watcher's options
125
+ * @param handler - signals when the call finishes
126
+ * @returns a compiler watcher
127
+ */
128
+ watch(watchOptions: Watchpack.WatchOptions, handler: liteTapable.Callback<Error, Stats>): Watching;
129
+ /**
130
+ * @param callback - signals when the call finishes
131
+ * @param options - additional data like modifiedFiles, removedFiles
132
+ */
133
+ run(callback: liteTapable.Callback<Error, Stats>, options?: {
134
+ modifiedFiles?: ReadonlySet<string>;
135
+ removedFiles?: ReadonlySet<string>;
136
+ }): void;
137
+ runAsChild(callback: (err?: null | Error, entries?: Chunk[], compilation?: Compilation) => any): void;
138
+ purgeInputFileSystem(): void;
139
+ /**
140
+ * @param compilation - the compilation
141
+ * @param compilerName - the compiler's name
142
+ * @param compilerIndex - the compiler's index
143
+ * @param outputOptions - the output options
144
+ * @param plugins - the plugins to apply
145
+ * @returns a child compiler
146
+ */
147
+ createChildCompiler(compilation: Compilation, compilerName: string, compilerIndex: number, outputOptions: OutputNormalized, plugins: RspackPluginInstance[]): Compiler;
148
+ isChild(): boolean;
149
+ /**
150
+ * Create a compilation and run it, which is the basic method that `compiler.run` and `compiler.watch` depend on.
151
+ * TODO: make this method private in the next major release
152
+ * @private this method is only used in Rspack core
153
+ */
154
+ compile(callback: liteTapable.Callback<Error, Compilation>): void;
155
+ close(callback: (error?: Error | null) => void): void;
156
+ /**
157
+ * Note: This is not a webpack public API, maybe removed in future.
158
+ * @internal
159
+ */
160
+ __internal__rebuild(modifiedFiles?: ReadonlySet<string>, removedFiles?: ReadonlySet<string>, callback?: (error: Error | null) => void): void;
161
+ /**
162
+ * Note: This is not a webpack public API, maybe removed in future.
163
+ * @internal
164
+ */
165
+ __internal__create_compilation(native: binding.JsCompilation): Compilation;
166
+ /**
167
+ * Note: This is not a webpack public API, maybe removed in future.
168
+ * @internal
169
+ */
170
+ __internal__registerBuiltinPlugin(plugin: binding.BuiltinPlugin): void;
171
+ /**
172
+ * Note: This is not a webpack public API, maybe removed in future.
173
+ * @internal
174
+ */
175
+ __internal__takeModuleExecutionResult(id: number): any;
176
+ /**
177
+ * Note: This is not a webpack public API, maybe removed in future.
178
+ * @internal
179
+ */
180
+ __internal__get_compilation(): Compilation | undefined;
181
+ /**
182
+ * Note: This is not a webpack public API, maybe removed in future.
183
+ * @internal
184
+ */
185
+ __internal__get_compilation_params(): CompilationParams | undefined;
186
+ /**
187
+ * Note: This is not a webpack public API, maybe removed in future.
188
+ * @internal
189
+ */
190
+ __internal__get_module_execution_results_map(): Map<number, any>;
191
+ }
192
+ export { Compiler };
@@ -0,0 +1 @@
1
+ export { ConcatenatedModule } from "@rspack/binding";
@@ -0,0 +1 @@
1
+ export { ContextModule } from "@rspack/binding";
@@ -0,0 +1,13 @@
1
+ import * as liteTapable from "@rspack/lite-tapable";
2
+ import type { ContextModuleFactoryAfterResolveResult, ContextModuleFactoryBeforeResolveResult } from "./Module";
3
+ export declare class ContextModuleFactory {
4
+ hooks: {
5
+ beforeResolve: liteTapable.AsyncSeriesWaterfallHook<[
6
+ ContextModuleFactoryBeforeResolveResult
7
+ ], ContextModuleFactoryBeforeResolveResult | void>;
8
+ afterResolve: liteTapable.AsyncSeriesWaterfallHook<[
9
+ ContextModuleFactoryAfterResolveResult
10
+ ], ContextModuleFactoryAfterResolveResult | void>;
11
+ };
12
+ constructor();
13
+ }
@@ -0,0 +1,7 @@
1
+ import type { Diagnostics } from "@rspack/binding";
2
+ import type { RspackError } from "./RspackError";
3
+ declare const $proxy: unique symbol;
4
+ export declare function createDiagnosticArray(adm: Diagnostics & {
5
+ [$proxy]?: RspackError[];
6
+ }): RspackError[];
7
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { ChunkGroup } from "@rspack/binding";
2
+ export type Entrypoint = ChunkGroup;
@@ -0,0 +1,3 @@
1
+ export declare const cutOffLoaderExecution: (stack: string) => string;
2
+ export declare const cleanUp: (stack: string, name: string, message: string) => string;
3
+ export declare const cutOffMessage: (stack: string, name: string, message: string) => string;
@@ -0,0 +1,4 @@
1
+ import type { Compiler } from "./Compiler";
2
+ export default class ExecuteModulePlugin {
3
+ apply(compiler: Compiler): void;
4
+ }
@@ -0,0 +1,20 @@
1
+ import type { JsExportsInfo } from "@rspack/binding";
2
+ import type { RuntimeSpec } from "./util/runtime";
3
+ /**
4
+ * Unused: 0
5
+ * OnlyPropertiesUsed: 1
6
+ * NoInfo: 2
7
+ * Unknown: 3
8
+ * Used: 4
9
+ */
10
+ type UsageStateType = 0 | 1 | 2 | 3 | 4;
11
+ export declare class ExportsInfo {
12
+ #private;
13
+ static __from_binding(binding: JsExportsInfo): ExportsInfo;
14
+ private constructor();
15
+ isUsed(runtime: RuntimeSpec): boolean;
16
+ isModuleUsed(runtime: RuntimeSpec): boolean;
17
+ setUsedInUnknownWay(runtime: RuntimeSpec): boolean;
18
+ getUsed(name: string | string[], runtime: RuntimeSpec): UsageStateType;
19
+ }
20
+ export {};
@@ -0,0 +1 @@
1
+ export { ExternalModule } from "@rspack/binding";
@@ -0,0 +1,54 @@
1
+ import type { NodeFsStats, ThreadsafeNodeFS } from "@rspack/binding";
2
+ import { type InputFileSystem, type IntermediateFileSystem, type OutputFileSystem } from "./util/fs";
3
+ declare class ThreadsafeInputNodeFS implements ThreadsafeNodeFS {
4
+ writeFile: (name: string, content: Buffer) => Promise<void>;
5
+ removeFile: (name: string) => Promise<void>;
6
+ mkdir: (name: string) => Promise<void>;
7
+ mkdirp: (name: string) => Promise<string | void>;
8
+ removeDirAll: (name: string) => Promise<string | void>;
9
+ readDir: (name: string) => Promise<string[] | void>;
10
+ readFile: (name: string) => Promise<Buffer | string | void>;
11
+ stat: (name: string) => Promise<NodeFsStats | void>;
12
+ lstat: (name: string) => Promise<NodeFsStats | void>;
13
+ chmod?: (name: string, mode: number) => Promise<void>;
14
+ realpath: (name: string) => Promise<string | void>;
15
+ open: (name: string, flags: string) => Promise<number | void>;
16
+ rename: (from: string, to: string) => Promise<void>;
17
+ close: (fd: number) => Promise<void>;
18
+ write: (fd: number, content: Buffer, position: number) => Promise<number | void>;
19
+ writeAll: (fd: number, content: Buffer) => Promise<number | void>;
20
+ read: (fd: number, length: number, position: number) => Promise<Buffer | void>;
21
+ readUntil: (fd: number, code: number, position: number) => Promise<Buffer | void>;
22
+ readToEnd: (fd: number, position: number) => Promise<Buffer | void>;
23
+ constructor(fs?: InputFileSystem);
24
+ static __to_binding(fs?: InputFileSystem): ThreadsafeInputNodeFS;
25
+ static needsBinding(ifs?: false | RegExp[]): boolean;
26
+ }
27
+ declare class ThreadsafeOutputNodeFS implements ThreadsafeNodeFS {
28
+ writeFile: (name: string, content: Buffer) => Promise<void>;
29
+ removeFile: (name: string) => Promise<void>;
30
+ mkdir: (name: string) => Promise<void>;
31
+ mkdirp: (name: string) => Promise<string | void>;
32
+ removeDirAll: (name: string) => Promise<string | void>;
33
+ readDir: (name: string) => Promise<string[] | void>;
34
+ readFile: (name: string) => Promise<Buffer | string | void>;
35
+ stat: (name: string) => Promise<NodeFsStats | void>;
36
+ lstat: (name: string) => Promise<NodeFsStats | void>;
37
+ chmod?: (name: string, mode: number) => Promise<void>;
38
+ realpath: (name: string) => Promise<string | void>;
39
+ open: (name: string, flags: string) => Promise<number | void>;
40
+ rename: (from: string, to: string) => Promise<void>;
41
+ close: (fd: number) => Promise<void>;
42
+ write: (fd: number, content: Buffer, position: number) => Promise<number | void>;
43
+ writeAll: (fd: number, content: Buffer) => Promise<number | void>;
44
+ read: (fd: number, length: number, position: number) => Promise<Buffer | void>;
45
+ readUntil: (fd: number, code: number, position: number) => Promise<Buffer | void>;
46
+ readToEnd: (fd: number, position: number) => Promise<Buffer | void>;
47
+ constructor(fs?: OutputFileSystem);
48
+ static __to_binding(fs?: OutputFileSystem): ThreadsafeOutputNodeFS;
49
+ }
50
+ declare class ThreadsafeIntermediateNodeFS extends ThreadsafeOutputNodeFS {
51
+ constructor(fs?: IntermediateFileSystem);
52
+ static __to_binding(fs?: IntermediateFileSystem): ThreadsafeIntermediateNodeFS;
53
+ }
54
+ export { ThreadsafeInputNodeFS, ThreadsafeOutputNodeFS, ThreadsafeIntermediateNodeFS };
@@ -0,0 +1,5 @@
1
+ interface FileSystemInfoEntry {
2
+ safeTime: number;
3
+ timestamp?: number;
4
+ }
5
+ export type { FileSystemInfoEntry };
@@ -0,0 +1,53 @@
1
+ import binding, { type AssetInfo } from "@rspack/binding";
2
+ import type { Source } from "webpack-sources";
3
+ import type { ResourceData } from "./Resolver";
4
+ import "./BuildInfo";
5
+ export type ResourceDataWithData = ResourceData & {
6
+ data?: Record<string, any>;
7
+ };
8
+ export type CreateData = Partial<binding.JsCreateData>;
9
+ export type ContextInfo = {
10
+ issuer: string;
11
+ issuerLayer?: string | null;
12
+ };
13
+ export type ResolveData = {
14
+ contextInfo: ContextInfo;
15
+ context: string;
16
+ request: string;
17
+ fileDependencies: string[];
18
+ missingDependencies: string[];
19
+ contextDependencies: string[];
20
+ createData?: CreateData;
21
+ };
22
+ export declare class ContextModuleFactoryBeforeResolveData {
23
+ #private;
24
+ context: string;
25
+ request: string;
26
+ regExp: RegExp | undefined;
27
+ recursive: boolean;
28
+ static __from_binding(binding: binding.JsContextModuleFactoryBeforeResolveData): ContextModuleFactoryBeforeResolveData;
29
+ static __to_binding(data: ContextModuleFactoryBeforeResolveData): binding.JsContextModuleFactoryBeforeResolveData;
30
+ private constructor();
31
+ }
32
+ export type ContextModuleFactoryBeforeResolveResult = false | ContextModuleFactoryBeforeResolveData;
33
+ export declare class ContextModuleFactoryAfterResolveData {
34
+ #private;
35
+ resource: number;
36
+ context: string;
37
+ request: string;
38
+ regExp: RegExp | undefined;
39
+ recursive: boolean;
40
+ readonly dependencies: binding.Dependency[];
41
+ static __from_binding(binding: binding.JsContextModuleFactoryAfterResolveData): ContextModuleFactoryAfterResolveData;
42
+ static __to_binding(data: ContextModuleFactoryAfterResolveData): binding.JsContextModuleFactoryAfterResolveData;
43
+ private constructor();
44
+ }
45
+ export type ContextModuleFactoryAfterResolveResult = false | ContextModuleFactoryAfterResolveData;
46
+ declare module "@rspack/binding" {
47
+ interface Module {
48
+ identifier(): string;
49
+ originalSource(): Source | null;
50
+ emitFile(filename: string, source: Source, assetInfo?: AssetInfo): void;
51
+ }
52
+ }
53
+ export { Module } from "@rspack/binding";
@@ -0,0 +1,19 @@
1
+ import type { Dependency, JsModuleGraph, ModuleGraphConnection } from "@rspack/binding";
2
+ import { ExportsInfo } from "./ExportsInfo";
3
+ import type { Module } from "./Module";
4
+ export default class ModuleGraph {
5
+ #private;
6
+ static __from_binding(binding: JsModuleGraph): ModuleGraph;
7
+ constructor(binding: JsModuleGraph);
8
+ getModule(dependency: Dependency): Module | null;
9
+ getResolvedModule(dependency: Dependency): Module | null;
10
+ getParentModule(dependency: Dependency): Module | null;
11
+ getIssuer(module: Module): Module | null;
12
+ getExportsInfo(module: Module): ExportsInfo;
13
+ getConnection(dependency: Dependency): ModuleGraphConnection | null;
14
+ getOutgoingConnections(module: Module): ModuleGraphConnection[];
15
+ getIncomingConnections(module: Module): ModuleGraphConnection[];
16
+ getParentBlockIndex(dependency: Dependency): number;
17
+ isAsync(module: Module): boolean;
18
+ getOutgoingConnectionsInOrder(module: Module): ModuleGraphConnection[];
19
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This is the module type used for JSON files. JSON files are always parsed as ES Module.
3
+ */
4
+ export declare const JSON_MODULE_TYPE = "json";
5
+ /**
6
+ * This is the module type used for automatically choosing between `asset/inline`, `asset/resource` based on asset size limit (8096).
7
+ */
8
+ export declare const ASSET_MODULE_TYPE = "asset";
@@ -0,0 +1,78 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/MultiCompiler.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 * as liteTapable from "@rspack/lite-tapable";
11
+ import type { CompilationParams, Compiler, RspackOptions } from ".";
12
+ import type { WatchOptions } from "./config";
13
+ import MultiStats from "./MultiStats";
14
+ import MultiWatching from "./MultiWatching";
15
+ import type { InputFileSystem, IntermediateFileSystem, WatchFileSystem } from "./util/fs";
16
+ export interface MultiCompilerOptions {
17
+ /**
18
+ * how many Compilers are allows to run at the same time in parallel
19
+ */
20
+ parallelism?: number;
21
+ }
22
+ export type MultiRspackOptions = ReadonlyArray<RspackOptions> & MultiCompilerOptions;
23
+ export declare class MultiCompiler {
24
+ #private;
25
+ compilers: Compiler[];
26
+ dependencies: WeakMap<Compiler, string[]>;
27
+ hooks: {
28
+ done: liteTapable.SyncHook<MultiStats>;
29
+ invalid: liteTapable.MultiHook<liteTapable.SyncHook<[string | null, number]>>;
30
+ beforeCompile: liteTapable.MultiHook<liteTapable.AsyncSeriesHook<[CompilationParams]>>;
31
+ shutdown: liteTapable.MultiHook<liteTapable.AsyncSeriesHook<[]>>;
32
+ run: liteTapable.MultiHook<liteTapable.AsyncSeriesHook<[Compiler]>>;
33
+ watchClose: liteTapable.SyncHook<[]>;
34
+ watchRun: liteTapable.MultiHook<liteTapable.AsyncSeriesHook<[Compiler]>>;
35
+ infrastructureLog: liteTapable.MultiHook<liteTapable.SyncBailHook<[string, string, any[]], true>>;
36
+ };
37
+ _options: MultiCompilerOptions;
38
+ running: boolean;
39
+ watching?: MultiWatching;
40
+ constructor(compilers: Compiler[] | Record<string, Compiler>, options?: MultiCompilerOptions);
41
+ get options(): import(".").RspackOptionsNormalized[] & MultiCompilerOptions;
42
+ get outputPath(): string;
43
+ get inputFileSystem(): InputFileSystem;
44
+ get outputFileSystem(): typeof import("fs");
45
+ get watchFileSystem(): WatchFileSystem;
46
+ get intermediateFileSystem(): IntermediateFileSystem;
47
+ set inputFileSystem(value: InputFileSystem);
48
+ set outputFileSystem(value: typeof import("fs"));
49
+ set watchFileSystem(value: WatchFileSystem);
50
+ set intermediateFileSystem(value: IntermediateFileSystem);
51
+ getInfrastructureLogger(name: string): import("./logging/Logger").Logger;
52
+ /**
53
+ * @param compiler - the child compiler
54
+ * @param dependencies - its dependencies
55
+ */
56
+ setDependencies(compiler: Compiler, dependencies: string[]): void;
57
+ /**
58
+ * @param callback - signals when the validation is complete
59
+ * @returns true if the dependencies are valid
60
+ */
61
+ validateDependencies(callback: liteTapable.Callback<Error, MultiStats>): boolean;
62
+ /**
63
+ * @param watchOptions - the watcher's options
64
+ * @param handler - signals when the call finishes
65
+ * @returns a compiler watcher
66
+ */
67
+ watch(watchOptions: WatchOptions | WatchOptions[], handler: liteTapable.Callback<Error, MultiStats>): MultiWatching;
68
+ /**
69
+ * @param callback - signals when the call finishes
70
+ * @param options - additional data like modifiedFiles, removedFiles
71
+ */
72
+ run(callback: liteTapable.Callback<Error, MultiStats>, options?: {
73
+ modifiedFiles?: ReadonlySet<string>;
74
+ removedFiles?: ReadonlySet<string>;
75
+ }): void;
76
+ purgeInputFileSystem(): void;
77
+ close(callback: liteTapable.Callback<Error, void>): void;
78
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/MultiStats.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 { Stats } from "./Stats";
11
+ import type { StatsCompilation } from "./stats/statsFactoryUtils";
12
+ export default class MultiStats {
13
+ #private;
14
+ stats: Stats[];
15
+ constructor(stats: Stats[]);
16
+ get hash(): string;
17
+ hasErrors(): boolean;
18
+ hasWarnings(): boolean;
19
+ toJson(options: any): StatsCompilation;
20
+ toString(options: any): string;
21
+ }
22
+ export { MultiStats };
@@ -0,0 +1,27 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/MultiWatching.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 { Callback } from "@rspack/lite-tapable";
11
+ import type { MultiCompiler } from "./MultiCompiler";
12
+ import type { Watching } from "./Watching";
13
+ declare class MultiWatching {
14
+ watchings: Watching[];
15
+ compiler: MultiCompiler;
16
+ /**
17
+ * @param watchings - child compilers' watchers
18
+ * @param compiler - the compiler
19
+ */
20
+ constructor(watchings: Watching[], compiler: MultiCompiler);
21
+ invalidate(callback: Callback<Error, void>): void;
22
+ invalidateWithChangesAndRemovals(changedFiles?: Set<string>, removedFiles?: Set<string>, callback?: Callback<Error, void>): void;
23
+ close(callback: Callback<Error, void>): void;
24
+ suspend(): void;
25
+ resume(): void;
26
+ }
27
+ export default MultiWatching;
@@ -0,0 +1,18 @@
1
+ import binding from "@rspack/binding";
2
+ import type Watchpack from "watchpack";
3
+ import type { FileSystemInfoEntry, InputFileSystem, Watcher, WatchFileSystem } from "./util/fs";
4
+ export default class NativeWatchFileSystem implements WatchFileSystem {
5
+ #private;
6
+ constructor(inputFileSystem: InputFileSystem);
7
+ watch(files: Iterable<string> & {
8
+ added?: Iterable<string>;
9
+ removed?: Iterable<string>;
10
+ }, directories: Iterable<string> & {
11
+ added?: Iterable<string>;
12
+ removed?: Iterable<string>;
13
+ }, missing: Iterable<string> & {
14
+ added?: Iterable<string>;
15
+ removed?: Iterable<string>;
16
+ }, _startTime: number, options: Watchpack.WatchOptions, callback: (error: Error | null, fileTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">, contextTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">, changedFiles: Set<string>, removedFiles: Set<string>) => void, callbackUndelayed: (fileName: string, changeTime: number) => void): Watcher;
17
+ getNativeWatcher(options: Watchpack.WatchOptions): binding.NativeWatcher;
18
+ }
@@ -0,0 +1,15 @@
1
+ import * as liteTapable from "@rspack/lite-tapable";
2
+ import type { Compilation } from "./Compilation";
3
+ import type { LoaderContext } from "./config";
4
+ import type { Module } from "./Module";
5
+ export interface NormalModuleCompilationHooks {
6
+ loader: liteTapable.SyncHook<[LoaderContext, Module]>;
7
+ readResourceForScheme: any;
8
+ readResource: liteTapable.HookMap<liteTapable.AsyncSeriesBailHook<[LoaderContext], string | Buffer>>;
9
+ }
10
+ declare module "@rspack/binding" {
11
+ interface NormalModuleConstructor {
12
+ getCompilationHooks(compilation: Compilation): NormalModuleCompilationHooks;
13
+ }
14
+ }
15
+ export { NormalModule } from "@rspack/binding";
@@ -0,0 +1,23 @@
1
+ import type binding from "@rspack/binding";
2
+ import * as liteTapable from "@rspack/lite-tapable";
3
+ import type { ResolveData, ResourceDataWithData } from "./Module";
4
+ import type { ResolveOptionsWithDependencyType, ResolverFactory } from "./ResolverFactory";
5
+ export type NormalModuleCreateData = binding.JsNormalModuleFactoryCreateModuleArgs & {
6
+ settings: {};
7
+ };
8
+ export declare class NormalModuleFactory {
9
+ hooks: {
10
+ resolveForScheme: liteTapable.HookMap<liteTapable.AsyncSeriesBailHook<[ResourceDataWithData], true | void>>;
11
+ beforeResolve: liteTapable.AsyncSeriesBailHook<[ResolveData], false | void>;
12
+ factorize: liteTapable.AsyncSeriesBailHook<[ResolveData], void>;
13
+ resolve: liteTapable.AsyncSeriesBailHook<[ResolveData], void>;
14
+ afterResolve: liteTapable.AsyncSeriesBailHook<[ResolveData], false | void>;
15
+ createModule: liteTapable.AsyncSeriesBailHook<[
16
+ NormalModuleCreateData,
17
+ {}
18
+ ], void>;
19
+ };
20
+ resolverFactory: ResolverFactory;
21
+ constructor(resolverFactory: ResolverFactory);
22
+ getResolver(type: string, resolveOptions: ResolveOptionsWithDependencyType): import("./ResolverFactory").ResolverWithOptions;
23
+ }
@@ -0,0 +1,18 @@
1
+ import type binding from "@rspack/binding";
2
+ import type { ResolveCallback } from "./config/adapterRuleUse";
3
+ type ResolveContext = {};
4
+ export type ResourceData = binding.JsResourceData;
5
+ export interface ResolveRequest {
6
+ path: string;
7
+ query: string;
8
+ fragment: string;
9
+ descriptionFileData?: string;
10
+ descriptionFilePath?: string;
11
+ }
12
+ export declare class Resolver {
13
+ #private;
14
+ constructor(binding: binding.JsResolver);
15
+ resolveSync(context: object, path: string, request: string): string | false;
16
+ resolve(context: object, path: string, request: string, resolveContext: ResolveContext, callback: ResolveCallback): void;
17
+ }
18
+ export {};
@@ -0,0 +1,17 @@
1
+ import binding from "@rspack/binding";
2
+ import { type Resolve } from "./config";
3
+ import { Resolver } from "./Resolver";
4
+ export type ResolveOptionsWithDependencyType = Resolve & {
5
+ dependencyType?: string;
6
+ resolveToContext?: boolean;
7
+ };
8
+ export type WithOptions = {
9
+ withOptions: (options: ResolveOptionsWithDependencyType) => ResolverWithOptions;
10
+ };
11
+ export type ResolverWithOptions = Resolver & WithOptions;
12
+ export declare class ResolverFactory {
13
+ #private;
14
+ static __to_binding(resolver_factory: ResolverFactory): binding.JsResolverFactory;
15
+ constructor(pnp: boolean, resolveOptions: Resolve, loaderResolveOptions: Resolve);
16
+ get(type: string, resolveOptions?: ResolveOptionsWithDependencyType): ResolverWithOptions;
17
+ }
@@ -0,0 +1,9 @@
1
+ import type binding from "@rspack/binding";
2
+ export type { RspackError } from "@rspack/binding";
3
+ export type RspackSeverity = binding.JsRspackSeverity;
4
+ export declare class NonErrorEmittedError extends Error {
5
+ constructor(error: Error);
6
+ }
7
+ export declare class DeadlockRiskError extends Error {
8
+ constructor(message: string);
9
+ }
@@ -0,0 +1,9 @@
1
+ declare class RuleSetCompiler {
2
+ references: Map<string, any>;
3
+ /**
4
+ * builtin references that should be serializable and passed to Rust.
5
+ */
6
+ builtinReferences: Map<string, any>;
7
+ constructor();
8
+ }
9
+ export { RuleSetCompiler };