@rspack-debug/browser 0.0.0-alpha.0 → 1.6.4

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 (252) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +15 -0
  3. package/dist/BuildInfo.d.ts +17 -0
  4. package/dist/Chunk.d.ts +16 -0
  5. package/dist/ChunkGraph.d.ts +9 -0
  6. package/dist/Chunks.d.ts +12 -0
  7. package/dist/CodeGenerationResults.d.ts +1 -0
  8. package/dist/Compilation.d.ts +417 -0
  9. package/dist/Compiler.d.ts +223 -0
  10. package/dist/ConcatenatedModule.d.ts +1 -0
  11. package/dist/ContextModule.d.ts +1 -0
  12. package/dist/ContextModuleFactory.d.ts +13 -0
  13. package/dist/Diagnostics.d.ts +7 -0
  14. package/dist/Entrypoint.d.ts +2 -0
  15. package/dist/ErrorHelpers.d.ts +3 -0
  16. package/dist/ExecuteModulePlugin.d.ts +4 -0
  17. package/dist/ExportsInfo.d.ts +20 -0
  18. package/dist/ExternalModule.d.ts +1 -0
  19. package/dist/FileSystem.d.ts +54 -0
  20. package/dist/FileSystemInfo.d.ts +5 -0
  21. package/dist/Module.d.ts +42 -0
  22. package/dist/ModuleGraph.d.ts +19 -0
  23. package/dist/ModuleTypeConstants.d.ts +8 -0
  24. package/dist/MultiCompiler.d.ts +82 -0
  25. package/dist/MultiStats.d.ts +23 -0
  26. package/dist/MultiWatching.d.ts +27 -0
  27. package/dist/NativeWatchFileSystem.d.ts +23 -0
  28. package/dist/NormalModule.d.ts +15 -0
  29. package/dist/NormalModuleFactory.d.ts +23 -0
  30. package/dist/Resolver.d.ts +30 -0
  31. package/dist/ResolverFactory.d.ts +17 -0
  32. package/dist/RspackError.d.ts +12 -0
  33. package/dist/RuleSetCompiler.d.ts +9 -0
  34. package/dist/RuntimeGlobals.d.ts +328 -0
  35. package/dist/RuntimeModule.d.ts +32 -0
  36. package/dist/Stats.d.ts +17 -0
  37. package/dist/Template.d.ts +77 -0
  38. package/dist/VirtualModulesPlugin.d.ts +12 -0
  39. package/dist/Watching.d.ts +56 -0
  40. package/dist/binding.d.ts +8 -0
  41. package/dist/browser/BrowserHttpImportEsmPlugin.d.ts +48 -0
  42. package/dist/browser/BrowserRequirePlugin.d.ts +38 -0
  43. package/dist/browser/buffer.d.ts +1 -0
  44. package/dist/browser/fs.d.ts +13 -0
  45. package/dist/browser/index.d.ts +11 -0
  46. package/dist/browser/service.d.ts +25 -0
  47. package/dist/builtin-loader/index.d.ts +1 -0
  48. package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
  49. package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
  50. package/dist/builtin-loader/swc/index.d.ts +5 -0
  51. package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
  52. package/dist/builtin-loader/swc/types.d.ts +83 -0
  53. package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
  54. package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
  55. package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
  56. package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
  57. package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
  58. package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
  59. package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
  60. package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
  61. package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
  62. package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
  63. package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
  64. package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
  65. package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
  66. package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
  67. package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
  68. package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +7 -0
  69. package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +7 -0
  70. package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
  71. package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
  72. package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
  73. package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
  74. package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
  75. package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
  76. package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
  77. package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
  78. package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
  79. package/dist/builtin-plugin/EsmLibraryPlugin.d.ts +11 -0
  80. package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
  81. package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
  82. package/dist/builtin-plugin/ExternalsPlugin.d.ts +12 -0
  83. package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
  84. package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
  85. package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
  86. package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
  87. package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +9 -0
  88. package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
  89. package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
  90. package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
  91. package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
  92. package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
  93. package/dist/builtin-plugin/InlineExportsPlugin.d.ts +9 -0
  94. package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
  95. package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
  96. package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
  97. package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
  98. package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
  99. package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
  100. package/dist/builtin-plugin/MangleExportsPlugin.d.ts +9 -0
  101. package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
  102. package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
  103. package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +7 -0
  104. package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
  105. package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
  106. package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
  107. package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +7 -0
  108. package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +7 -0
  109. package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
  110. package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
  111. package/dist/builtin-plugin/NormalModuleReplacementPlugin.d.ts +10 -0
  112. package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
  113. package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
  114. package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
  115. package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
  116. package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
  117. package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
  118. package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
  119. package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
  120. package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
  121. package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
  122. package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
  123. package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
  124. package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
  125. package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
  126. package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
  127. package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +39 -0
  128. package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +215 -0
  129. package/dist/builtin-plugin/URLPlugin.d.ts +9 -0
  130. package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
  131. package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
  132. package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
  133. package/dist/builtin-plugin/base.d.ts +45 -0
  134. package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
  135. package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
  136. package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
  137. package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
  138. package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
  139. package/dist/builtin-plugin/html-plugin/options.d.ts +82 -0
  140. package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
  141. package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
  142. package/dist/builtin-plugin/index.d.ts +84 -0
  143. package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +10 -0
  144. package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
  145. package/dist/config/adapter.d.ts +8 -0
  146. package/dist/config/adapterRuleUse.d.ts +391 -0
  147. package/dist/config/browserslistTargetHandler.d.ts +15 -0
  148. package/dist/config/defaults.d.ts +4 -0
  149. package/dist/config/devServer.d.ts +314 -0
  150. package/dist/config/index.d.ts +5 -0
  151. package/dist/config/normalization.d.ts +169 -0
  152. package/dist/config/target.d.ts +89 -0
  153. package/dist/config/types.d.ts +2383 -0
  154. package/dist/container/ContainerPlugin.d.ts +40 -0
  155. package/dist/container/ContainerReferencePlugin.d.ts +33 -0
  156. package/dist/container/ModuleFederationManifestPlugin.d.ts +37 -0
  157. package/dist/container/ModuleFederationPlugin.d.ts +15 -0
  158. package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
  159. package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
  160. package/dist/container/index.d.ts +4 -0
  161. package/dist/container/options.d.ts +3 -0
  162. package/dist/error/ConcurrentCompilationError.d.ts +14 -0
  163. package/dist/exports.d.ts +166 -0
  164. package/dist/index.d.ts +10 -0
  165. package/dist/index.mjs +66931 -0
  166. package/dist/index.mjs.LICENSE.txt +19 -0
  167. package/dist/lib/AbstractMethodError.d.ts +23 -0
  168. package/dist/lib/Cache.d.ts +65 -0
  169. package/dist/lib/CacheFacade.d.ts +139 -0
  170. package/dist/lib/DllPlugin.d.ts +42 -0
  171. package/dist/lib/DllReferencePlugin.d.ts +119 -0
  172. package/dist/lib/EntryOptionPlugin.d.ts +33 -0
  173. package/dist/lib/EnvironmentPlugin.d.ts +22 -0
  174. package/dist/lib/HookWebpackError.d.ts +40 -0
  175. package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
  176. package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
  177. package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
  178. package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
  179. package/dist/lib/WebpackError.d.ts +21 -0
  180. package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
  181. package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
  182. package/dist/lib/cache/mergeEtags.d.ts +17 -0
  183. package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
  184. package/dist/loader-runner/ModuleError.d.ts +13 -0
  185. package/dist/loader-runner/index.d.ts +34 -0
  186. package/dist/loader-runner/loadLoader.d.ts +12 -0
  187. package/dist/loader-runner/service.d.ts +71 -0
  188. package/dist/loader-runner/utils.d.ts +7 -0
  189. package/dist/loader-runner/worker.d.ts +14 -0
  190. package/dist/logging/Logger.d.ts +61 -0
  191. package/dist/logging/createConsoleLogger.d.ts +35 -0
  192. package/dist/logging/truncateArgs.d.ts +16 -0
  193. package/dist/napi-binding.d.ts +3128 -0
  194. package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
  195. package/dist/node/NodeTemplatePlugin.d.ts +18 -0
  196. package/dist/node/NodeWatchFileSystem.d.ts +18 -0
  197. package/dist/node/nodeConsole.d.ts +15 -0
  198. package/dist/rspack.d.ts +16 -0
  199. package/dist/rspack.wasi-browser.js +125 -0
  200. package/dist/rspackOptionsApply.d.ts +4 -0
  201. package/dist/runtime/cssExtractHmr.d.ts +4 -0
  202. package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
  203. package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
  204. package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
  205. package/dist/sharing/SharePlugin.d.ts +51 -0
  206. package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
  207. package/dist/sharing/utils.d.ts +1 -0
  208. package/dist/stats/DefaultStatsFactoryPlugin.d.ts +20 -0
  209. package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
  210. package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
  211. package/dist/stats/StatsFactory.d.ts +57 -0
  212. package/dist/stats/StatsPrinter.d.ts +57 -0
  213. package/dist/stats/statsFactoryUtils.d.ts +341 -0
  214. package/dist/swc.d.ts +7 -0
  215. package/dist/taps/compilation.d.ts +8 -0
  216. package/dist/taps/compiler.d.ts +2 -0
  217. package/dist/taps/contextModuleFactory.d.ts +2 -0
  218. package/dist/taps/index.d.ts +6 -0
  219. package/dist/taps/javascriptModules.d.ts +2 -0
  220. package/dist/taps/normalModuleFactory.d.ts +2 -0
  221. package/dist/taps/types.d.ts +11 -0
  222. package/dist/trace/index.d.ts +46 -0
  223. package/dist/trace/traceHookPlugin.d.ts +5 -0
  224. package/dist/util/ArrayQueue.d.ts +45 -0
  225. package/dist/util/AsyncTask.d.ts +7 -0
  226. package/dist/util/MergeCaller.d.ts +10 -0
  227. package/dist/util/SizeFormatHelpers.d.ts +10 -0
  228. package/dist/util/SplitChunkSize.d.ts +5 -0
  229. package/dist/util/assertNotNil.d.ts +1 -0
  230. package/dist/util/assetCondition.d.ts +2 -0
  231. package/dist/util/asyncLib.d.ts +54 -0
  232. package/dist/util/bindingVersionCheck.d.ts +5 -0
  233. package/dist/util/cleverMerge.d.ts +24 -0
  234. package/dist/util/comparators.d.ts +16 -0
  235. package/dist/util/createHash.d.ts +16 -0
  236. package/dist/util/createReadonlyMap.d.ts +1 -0
  237. package/dist/util/fake.d.ts +9 -0
  238. package/dist/util/fs.d.ts +375 -0
  239. package/dist/util/hash/index.d.ts +26 -0
  240. package/dist/util/hash/md4.d.ts +11 -0
  241. package/dist/util/hash/wasm-hash.d.ts +51 -0
  242. package/dist/util/hash/xxhash64.d.ts +11 -0
  243. package/dist/util/identifier.d.ts +31 -0
  244. package/dist/util/index.d.ts +8 -0
  245. package/dist/util/memoize.d.ts +2 -0
  246. package/dist/util/runtime.d.ts +2 -0
  247. package/dist/util/smartGrouping.d.ts +21 -0
  248. package/dist/util/source.d.ts +6 -0
  249. package/dist/util/validateConfig.d.ts +5 -0
  250. package/dist/wasi-worker-browser.mjs +23591 -0
  251. package/dist/wasi-worker-browser.mjs.LICENSE.txt +12 -0
  252. package/package.json +48 -9
@@ -0,0 +1,314 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack-dev-server/blob/6045b1e9d63078fb24cac52eb361b7356944cddd/types/lib/Server.d.ts
4
+ *
5
+ * MIT Licensed
6
+ * Author Tobias Koppers @sokra
7
+ * Copyright (c) JS Foundation and other contributors
8
+ * https://github.com/webpack/webpack-dev-server/blob/master/LICENSE
9
+ */
10
+ import type * as http from "node:http";
11
+ import type * as net from "node:net";
12
+ import type * as stream from "node:stream";
13
+ import type * as url from "node:url";
14
+ import type { Compiler, LiteralUnion, MultiCompiler, MultiStats, Stats, Watching } from "..";
15
+ type Logger = ReturnType<Compiler["getInfrastructureLogger"]>;
16
+ type MultiWatching = MultiCompiler["watch"];
17
+ type BasicServer = import("net").Server | import("tls").Server;
18
+ type ReadStream = import("fs").ReadStream;
19
+ type IncomingMessage = import("http").IncomingMessage;
20
+ type ServerResponse = import("http").ServerResponse;
21
+ type ServerOptions = import("https").ServerOptions & {
22
+ spdy?: {
23
+ plain?: boolean | undefined;
24
+ ssl?: boolean | undefined;
25
+ "x-forwarded-for"?: string | undefined;
26
+ protocol?: string | undefined;
27
+ protocols?: string[] | undefined;
28
+ };
29
+ };
30
+ type ResponseData = {
31
+ data: Buffer | ReadStream;
32
+ byteLength: number;
33
+ };
34
+ type ModifyResponseData<RequestInternal extends IncomingMessage = IncomingMessage, ResponseInternal extends ServerResponse = ServerResponse> = (req: RequestInternal, res: ResponseInternal, data: Buffer | ReadStream, byteLength: number) => ResponseData;
35
+ type Headers = {
36
+ key: string;
37
+ value: string;
38
+ }[] | Record<string, string | string[]>;
39
+ type OutputFileSystem = import("..").OutputFileSystem & {
40
+ statSync: import("fs").StatSyncFn;
41
+ readFileSync: typeof import("fs").readFileSync;
42
+ };
43
+ type RspackConfiguration = import("..").Configuration;
44
+ type Port = number | LiteralUnion<"auto", string>;
45
+ type HistoryContext = {
46
+ readonly match: RegExpMatchArray;
47
+ readonly parsedUrl: import("url").Url;
48
+ readonly request: any;
49
+ };
50
+ type RewriteTo = (context: HistoryContext) => string;
51
+ type Rewrite = {
52
+ readonly from: RegExp;
53
+ readonly to: string | RegExp | RewriteTo;
54
+ };
55
+ type HistoryApiFallbackOptions = {
56
+ readonly disableDotRule?: true | undefined;
57
+ readonly htmlAcceptHeaders?: readonly string[] | undefined;
58
+ readonly index?: string | undefined;
59
+ readonly logger?: typeof console.log | undefined;
60
+ readonly rewrites?: readonly Rewrite[] | undefined;
61
+ readonly verbose?: boolean | undefined;
62
+ };
63
+ type DevMiddlewareOptions<RequestInternal extends IncomingMessage = IncomingMessage, ResponseInternal extends ServerResponse = ServerResponse> = {
64
+ mimeTypes?: {
65
+ [key: string]: string;
66
+ } | undefined;
67
+ mimeTypeDefault?: string | undefined;
68
+ writeToDisk?: boolean | ((targetPath: string) => boolean) | undefined;
69
+ methods?: string[] | undefined;
70
+ headers?: any;
71
+ publicPath?: NonNullable<RspackConfiguration["output"]>["publicPath"];
72
+ stats?: RspackConfiguration["stats"];
73
+ serverSideRender?: boolean | undefined;
74
+ outputFileSystem?: OutputFileSystem | undefined;
75
+ index?: string | boolean | undefined;
76
+ modifyResponseData?: ModifyResponseData<RequestInternal, ResponseInternal> | undefined;
77
+ etag?: "strong" | "weak" | undefined;
78
+ lastModified?: boolean | undefined;
79
+ cacheControl?: string | number | boolean | {
80
+ maxAge?: number;
81
+ immutable?: boolean;
82
+ } | undefined;
83
+ cacheImmutable?: boolean | undefined;
84
+ };
85
+ type BasicApplication = any;
86
+ type BonjourServer = Record<string, any>;
87
+ type ChokidarWatchOptions = {
88
+ [key: string]: any;
89
+ };
90
+ type ServeIndexOptions = {
91
+ [key: string]: any;
92
+ };
93
+ type ServeStaticOptions = {
94
+ [key: string]: any;
95
+ };
96
+ type HttpProxyMiddlewareOptionsFilter = any;
97
+ type Request = IncomingMessage;
98
+ type Response = ServerResponse;
99
+ type WatchFiles = {
100
+ paths: string | string[];
101
+ options?: (ChokidarWatchOptions & {
102
+ aggregateTimeout?: number;
103
+ ignored?: ChokidarWatchOptions["ignored"];
104
+ poll?: number | boolean;
105
+ }) | undefined;
106
+ };
107
+ type Static = {
108
+ directory?: string | undefined;
109
+ publicPath?: string | string[] | undefined;
110
+ serveIndex?: boolean | ServeIndexOptions | undefined;
111
+ staticOptions?: ServeStaticOptions | undefined;
112
+ watch?: boolean | (ChokidarWatchOptions & {
113
+ aggregateTimeout?: number;
114
+ ignored?: ChokidarWatchOptions["ignored"];
115
+ poll?: number | boolean;
116
+ }) | undefined;
117
+ };
118
+ type ServerType<A extends BasicApplication = BasicApplication, S extends BasicServer = import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>> = LiteralUnion<"http" | "https" | "spdy" | "http2", string> | ((arg0: ServerOptions, arg1: A) => S);
119
+ type ServerConfiguration<A extends BasicApplication = BasicApplication, S extends BasicServer = import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>> = {
120
+ type?: ServerType<A, S> | undefined;
121
+ options?: ServerOptions | undefined;
122
+ };
123
+ type WebSocketServerConfiguration = {
124
+ type?: string | Function | undefined;
125
+ options?: Record<string, any> | undefined;
126
+ };
127
+ type NextFunction = (err?: any) => void;
128
+ type ProxyConfigArrayItem = {
129
+ path?: HttpProxyMiddlewareOptionsFilter;
130
+ context?: HttpProxyMiddlewareOptionsFilter;
131
+ } & {
132
+ bypass?: ByPass;
133
+ } & HttpProxyMiddlewareOptions;
134
+ type ByPass = (req: Request, res: Response, proxyConfig: ProxyConfigArrayItem) => any;
135
+ type ProxyConfigArray = (ProxyConfigArrayItem | ((req?: Request, res?: Response, next?: NextFunction) => ProxyConfigArrayItem))[];
136
+ type Callback = (stats?: Stats | MultiStats) => any;
137
+ type DevMiddlewareContext<_RequestInternal extends IncomingMessage = IncomingMessage, _ResponseInternal extends ServerResponse = ServerResponse> = {
138
+ state: boolean;
139
+ stats: Stats | MultiStats | undefined;
140
+ callbacks: Callback[];
141
+ options: any;
142
+ compiler: Compiler | MultiCompiler;
143
+ watching: Watching | MultiWatching | undefined;
144
+ logger: Logger;
145
+ outputFileSystem: OutputFileSystem;
146
+ };
147
+ type Server = any;
148
+ export type MiddlewareHandler<RequestInternal extends Request = Request, ResponseInternal extends Response = Response> = (req: RequestInternal, res: ResponseInternal, next: NextFunction) => void | Promise<void>;
149
+ type MiddlewareObject<RequestInternal extends Request = Request, ResponseInternal extends Response = Response> = {
150
+ name?: string;
151
+ path?: string;
152
+ middleware: MiddlewareHandler<RequestInternal, ResponseInternal>;
153
+ };
154
+ export type Middleware<RequestInternal extends Request = Request, ResponseInternal extends Response = Response> = MiddlewareObject<RequestInternal, ResponseInternal> | MiddlewareHandler<RequestInternal, ResponseInternal>;
155
+ type OpenApp = {
156
+ name?: string | undefined;
157
+ arguments?: string[] | undefined;
158
+ };
159
+ type Open = {
160
+ app?: string | string[] | OpenApp | undefined;
161
+ target?: string | string[] | undefined;
162
+ };
163
+ type OverlayMessageOptions = boolean | ((error: Error) => void);
164
+ type WebSocketURL = {
165
+ hostname?: string | undefined;
166
+ password?: string | undefined;
167
+ pathname?: string | undefined;
168
+ port?: string | number | undefined;
169
+ protocol?: string | undefined;
170
+ username?: string | undefined;
171
+ };
172
+ type ClientConfiguration = {
173
+ logging?: "none" | "error" | "warn" | "info" | "log" | "verbose" | undefined;
174
+ overlay?: boolean | {
175
+ warnings?: OverlayMessageOptions;
176
+ errors?: OverlayMessageOptions;
177
+ runtimeErrors?: OverlayMessageOptions;
178
+ } | undefined;
179
+ progress?: boolean | undefined;
180
+ reconnect?: number | boolean | undefined;
181
+ webSocketTransport?: string | undefined;
182
+ webSocketURL?: string | WebSocketURL | undefined;
183
+ };
184
+ export type DevServerOptions<A extends BasicApplication = BasicApplication, S extends BasicServer = import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>> = {
185
+ ipc?: string | boolean | undefined;
186
+ host?: string | undefined;
187
+ port?: Port | undefined;
188
+ hot?: boolean | "only" | undefined;
189
+ liveReload?: boolean | undefined;
190
+ devMiddleware?: DevMiddlewareOptions | undefined;
191
+ compress?: boolean | undefined;
192
+ allowedHosts?: string | string[] | undefined;
193
+ historyApiFallback?: boolean | HistoryApiFallbackOptions | undefined;
194
+ bonjour?: boolean | BonjourServer | undefined;
195
+ watchFiles?: string | string[] | WatchFiles | (string | WatchFiles)[] | undefined;
196
+ static?: string | boolean | Static | (string | Static)[] | undefined;
197
+ server?: ServerType<A, S> | ServerConfiguration<A, S> | undefined;
198
+ app?: (() => Promise<A>) | undefined;
199
+ webSocketServer?: string | boolean | WebSocketServerConfiguration | undefined;
200
+ proxy?: ProxyConfigArray | undefined;
201
+ open?: string | boolean | Open | (string | Open)[] | undefined;
202
+ setupExitSignals?: boolean | undefined;
203
+ client?: boolean | ClientConfiguration | undefined;
204
+ headers?: Headers | ((req: Request, res: Response, context: DevMiddlewareContext | undefined) => Headers) | undefined;
205
+ onListening?: ((devServer: Server) => void) | undefined;
206
+ setupMiddlewares?: ((middlewares: Middleware[], devServer: Server) => Middleware[]) | undefined;
207
+ };
208
+ interface HttpProxyMiddlewareOptions extends HttpProxyServerOptions {
209
+ pathRewrite?: {
210
+ [regexp: string]: string;
211
+ } | ((path: string, req: Request) => string) | ((path: string, req: Request) => Promise<string>);
212
+ router?: {
213
+ [hostOrPath: string]: HttpProxyServerOptions["target"];
214
+ } | ((req: Request) => HttpProxyServerOptions["target"]) | ((req: Request) => Promise<HttpProxyServerOptions["target"]>);
215
+ logLevel?: "debug" | "info" | "warn" | "error" | "silent";
216
+ logProvider?: LogProviderCallback;
217
+ onError?: OnErrorCallback;
218
+ onProxyRes?: OnProxyResCallback;
219
+ onProxyReq?: OnProxyReqCallback;
220
+ onProxyReqWs?: OnProxyReqWsCallback;
221
+ onOpen?: OnOpenCallback;
222
+ onClose?: OnCloseCallback;
223
+ }
224
+ interface LogProvider {
225
+ log: Logger;
226
+ debug?: Logger;
227
+ info?: Logger;
228
+ warn?: Logger;
229
+ error?: Logger;
230
+ }
231
+ type LogProviderCallback = (provider: LogProvider) => LogProvider;
232
+ type OnErrorCallback = (err: Error, req: Request, res: Response, target?: string | Partial<url.Url>) => void;
233
+ type OnProxyResCallback = (proxyRes: http.IncomingMessage, req: Request, res: Response) => void;
234
+ type OnProxyReqCallback = (proxyReq: http.ClientRequest, req: Request, res: Response, options: HttpProxyServerOptions) => void;
235
+ type OnProxyReqWsCallback = (proxyReq: http.ClientRequest, req: Request, socket: net.Socket, options: HttpProxyServerOptions, head: any) => void;
236
+ type OnCloseCallback = (proxyRes: Response, proxySocket: net.Socket, proxyHead: any) => void;
237
+ type OnOpenCallback = (proxySocket: net.Socket) => void;
238
+ interface HttpProxyServerOptions {
239
+ /** URL string to be parsed with the url module. */
240
+ target?: HttpProxyTarget | undefined;
241
+ /** URL string to be parsed with the url module. */
242
+ forward?: HttpProxyTargetUrl | undefined;
243
+ /** Object to be passed to http(s).request. */
244
+ agent?: any;
245
+ /** Object to be passed to https.createServer(). */
246
+ ssl?: any;
247
+ /** If you want to proxy websockets. */
248
+ ws?: boolean | undefined;
249
+ /** Adds x- forward headers. */
250
+ xfwd?: boolean | undefined;
251
+ /** Verify SSL certificate. */
252
+ secure?: boolean | undefined;
253
+ /** Explicitly specify if we are proxying to another proxy. */
254
+ toProxy?: boolean | undefined;
255
+ /** Specify whether you want to prepend the target's path to the proxy path. */
256
+ prependPath?: boolean | undefined;
257
+ /** Specify whether you want to ignore the proxy path of the incoming request. */
258
+ ignorePath?: boolean | undefined;
259
+ /** Local interface string to bind for outgoing connections. */
260
+ localAddress?: string | undefined;
261
+ /** Changes the origin of the host header to the target URL. */
262
+ changeOrigin?: boolean | undefined;
263
+ /** specify whether you want to keep letter case of response header key */
264
+ preserveHeaderKeyCase?: boolean | undefined;
265
+ /** Basic authentication i.e. 'user:password' to compute an Authorization header. */
266
+ auth?: string | undefined;
267
+ /** Rewrites the location hostname on (301 / 302 / 307 / 308) redirects, Default: null. */
268
+ hostRewrite?: string | undefined;
269
+ /** Rewrites the location host/ port on (301 / 302 / 307 / 308) redirects based on requested host/ port.Default: false. */
270
+ autoRewrite?: boolean | undefined;
271
+ /** Rewrites the location protocol on (301 / 302 / 307 / 308) redirects to 'http' or 'https'.Default: null. */
272
+ protocolRewrite?: string | undefined;
273
+ /** rewrites domain of set-cookie headers. */
274
+ cookieDomainRewrite?: false | string | {
275
+ [oldDomain: string]: string;
276
+ } | undefined;
277
+ /** rewrites path of set-cookie headers. Default: false */
278
+ cookiePathRewrite?: false | string | {
279
+ [oldPath: string]: string;
280
+ } | undefined;
281
+ /** object with extra headers to be added to target requests. */
282
+ headers?: {
283
+ [header: string]: string;
284
+ } | undefined;
285
+ /** Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes) */
286
+ proxyTimeout?: number | undefined;
287
+ /** Timeout (in milliseconds) for incoming requests */
288
+ timeout?: number | undefined;
289
+ /** Specify whether you want to follow redirects. Default: false */
290
+ followRedirects?: boolean | undefined;
291
+ /** If set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the proxyRes event */
292
+ selfHandleResponse?: boolean | undefined;
293
+ /** Buffer */
294
+ buffer?: stream.Stream | undefined;
295
+ /** Explicitly set the method type of the ProxyReq */
296
+ method?: string | undefined;
297
+ }
298
+ interface HttpProxyTargetDetailed {
299
+ host: string;
300
+ port: number;
301
+ protocol?: string | undefined;
302
+ hostname?: string | undefined;
303
+ socketPath?: string | undefined;
304
+ key?: string | undefined;
305
+ passphrase?: string | undefined;
306
+ pfx?: Buffer | string | undefined;
307
+ cert?: string | undefined;
308
+ ca?: string | undefined;
309
+ ciphers?: string | undefined;
310
+ secureProtocol?: string | undefined;
311
+ }
312
+ type HttpProxyTarget = HttpProxyTargetUrl | HttpProxyTargetDetailed;
313
+ type HttpProxyTargetUrl = string | Partial<url.Url>;
314
+ export {};
@@ -0,0 +1,5 @@
1
+ export * from "./adapter";
2
+ export type { RawSourceMap } from "./adapterRuleUse";
3
+ export * from "./defaults";
4
+ export * from "./normalization";
5
+ export type * from "./types";
@@ -0,0 +1,169 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/config/normalization.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 { HttpUriPluginOptions } from "../builtin-plugin";
11
+ import type { Compilation } from "../Compilation";
12
+ import type WebpackError from "../lib/WebpackError";
13
+ import type { Amd, AssetModuleFilename, Bail, CacheOptions, ChunkFilename, ChunkLoading, ChunkLoadingGlobal, Clean, Context, CrossOriginLoading, CssChunkFilename, CssFilename, Dependencies, DevServer, DevTool, DevtoolFallbackModuleFilenameTemplate, DevtoolModuleFilenameTemplate, DevtoolNamespace, EnabledLibraryTypes, EnabledWasmLoadingTypes, EntryDescription, Environment, Externals, ExternalsPresets, ExternalsType, Filename, GeneratorOptionsByModuleType, GlobalObject, HashDigest, HashDigestLength, HashFunction, HashSalt, HotUpdateChunkFilename, HotUpdateGlobal, HotUpdateMainFilename, Iife, ImportFunctionName, ImportMetaName, Incremental, InfrastructureLogging, LazyCompilationOptions, LibraryOptions, Loader, Mode, Name, Node, NoParseOption, Optimization, OutputModule, ParserOptionsByModuleType, Path, Performance, Plugins, Profile, PublicPath, Resolve, RspackFutureOptions, RspackOptions, RuleSetRules, ScriptType, SnapshotOptions, SourceMapFilename, StatsValue, StrictModuleErrorHandling, Target, TrustedTypes, UniqueName, WasmLoading, Watch, WatchOptions, WebassemblyModuleFilename, WorkerPublicPath } from "./types";
14
+ export declare const getNormalizedRspackOptions: (config: RspackOptions) => RspackOptionsNormalized;
15
+ export type EntryDynamicNormalized = () => Promise<EntryStaticNormalized>;
16
+ export type EntryNormalized = EntryDynamicNormalized | EntryStaticNormalized;
17
+ export interface EntryStaticNormalized {
18
+ [k: string]: EntryDescriptionNormalized;
19
+ }
20
+ export type EntryDescriptionNormalized = Pick<EntryDescription, "runtime" | "chunkLoading" | "asyncChunks" | "publicPath" | "baseUri" | "filename" | "library" | "layer"> & {
21
+ import?: string[];
22
+ dependOn?: string[];
23
+ };
24
+ export interface OutputNormalized {
25
+ path?: Path;
26
+ pathinfo?: boolean | "verbose";
27
+ clean?: Clean;
28
+ publicPath?: PublicPath;
29
+ filename?: Filename;
30
+ chunkFilename?: ChunkFilename;
31
+ crossOriginLoading?: CrossOriginLoading;
32
+ cssFilename?: CssFilename;
33
+ cssChunkFilename?: CssChunkFilename;
34
+ hotUpdateMainFilename?: HotUpdateMainFilename;
35
+ hotUpdateChunkFilename?: HotUpdateChunkFilename;
36
+ hotUpdateGlobal?: HotUpdateGlobal;
37
+ assetModuleFilename?: AssetModuleFilename;
38
+ uniqueName?: UniqueName;
39
+ chunkLoadingGlobal?: ChunkLoadingGlobal;
40
+ enabledLibraryTypes?: EnabledLibraryTypes;
41
+ library?: LibraryOptions;
42
+ module?: OutputModule;
43
+ strictModuleErrorHandling?: StrictModuleErrorHandling;
44
+ globalObject?: GlobalObject;
45
+ importFunctionName?: ImportFunctionName;
46
+ importMetaName?: ImportMetaName;
47
+ iife?: Iife;
48
+ wasmLoading?: WasmLoading;
49
+ enabledWasmLoadingTypes?: EnabledWasmLoadingTypes;
50
+ webassemblyModuleFilename?: WebassemblyModuleFilename;
51
+ chunkFormat?: string | false;
52
+ chunkLoading?: string | false;
53
+ enabledChunkLoadingTypes?: string[];
54
+ trustedTypes?: TrustedTypes;
55
+ sourceMapFilename?: SourceMapFilename;
56
+ hashDigest?: HashDigest;
57
+ hashDigestLength?: HashDigestLength;
58
+ hashFunction?: HashFunction;
59
+ hashSalt?: HashSalt;
60
+ asyncChunks?: boolean;
61
+ workerChunkLoading?: ChunkLoading;
62
+ workerWasmLoading?: WasmLoading;
63
+ workerPublicPath?: WorkerPublicPath;
64
+ scriptType?: ScriptType;
65
+ devtoolNamespace?: DevtoolNamespace;
66
+ devtoolModuleFilenameTemplate?: DevtoolModuleFilenameTemplate;
67
+ devtoolFallbackModuleFilenameTemplate?: DevtoolFallbackModuleFilenameTemplate;
68
+ environment?: Environment;
69
+ charset?: boolean;
70
+ chunkLoadTimeout?: number;
71
+ compareBeforeEmit?: boolean;
72
+ }
73
+ export interface ModuleOptionsNormalized {
74
+ defaultRules?: RuleSetRules;
75
+ rules: RuleSetRules;
76
+ parser: ParserOptionsByModuleType;
77
+ generator: GeneratorOptionsByModuleType;
78
+ noParse?: NoParseOption;
79
+ unsafeCache?: boolean | RegExp;
80
+ }
81
+ export type ExperimentCacheNormalized = boolean | {
82
+ type: "memory";
83
+ } | {
84
+ type: "persistent";
85
+ buildDependencies: string[];
86
+ version: string;
87
+ snapshot: {
88
+ immutablePaths: (string | RegExp)[];
89
+ unmanagedPaths: (string | RegExp)[];
90
+ managedPaths: (string | RegExp)[];
91
+ };
92
+ storage: {
93
+ type: "filesystem";
94
+ directory: string;
95
+ };
96
+ };
97
+ export interface ExperimentsNormalized {
98
+ cache?: ExperimentCacheNormalized;
99
+ /**
100
+ * @deprecated This option is deprecated and will be removed in future versions.
101
+ *
102
+ * Please use the Configuration top-level `lazyCompilation` option instead.
103
+ */
104
+ lazyCompilation?: false | LazyCompilationOptions;
105
+ asyncWebAssembly?: boolean;
106
+ outputModule?: boolean;
107
+ topLevelAwait?: boolean;
108
+ css?: boolean;
109
+ /**
110
+ * @deprecated This option is deprecated, layers is enabled since v1.6.0
111
+ */
112
+ layers?: boolean;
113
+ incremental?: false | Incremental;
114
+ /**
115
+ * @deprecated This option is deprecated, as it has a huge regression in some edge cases where the chunk graph has lots of cycles. We will improve performance of build_chunk_graph.
116
+ */
117
+ parallelCodeSplitting?: boolean;
118
+ futureDefaults?: boolean;
119
+ rspackFuture?: RspackFutureOptions;
120
+ buildHttp?: HttpUriPluginOptions;
121
+ parallelLoader?: boolean;
122
+ useInputFileSystem?: false | RegExp[];
123
+ inlineConst?: boolean;
124
+ inlineEnum?: boolean;
125
+ typeReexportsPresence?: boolean;
126
+ lazyBarrel?: boolean;
127
+ nativeWatcher?: boolean;
128
+ deferImport?: boolean;
129
+ }
130
+ export type IgnoreWarningsNormalized = ((warning: WebpackError, compilation: Compilation) => boolean)[];
131
+ export type OptimizationRuntimeChunkNormalized = false | {
132
+ name: string | ((entrypoint: {
133
+ name: string;
134
+ }) => string);
135
+ };
136
+ export interface RspackOptionsNormalized {
137
+ name?: Name;
138
+ dependencies?: Dependencies;
139
+ context?: Context;
140
+ mode?: Mode;
141
+ entry: EntryNormalized;
142
+ output: OutputNormalized;
143
+ resolve: Resolve;
144
+ resolveLoader: Resolve;
145
+ module: ModuleOptionsNormalized;
146
+ target?: Target;
147
+ externals?: Externals;
148
+ externalsType?: ExternalsType;
149
+ externalsPresets: ExternalsPresets;
150
+ infrastructureLogging: InfrastructureLogging;
151
+ devtool?: DevTool;
152
+ node: Node;
153
+ loader: Loader;
154
+ snapshot: SnapshotOptions;
155
+ cache?: CacheOptions;
156
+ stats: StatsValue;
157
+ optimization: Optimization;
158
+ plugins: Plugins;
159
+ experiments: ExperimentsNormalized;
160
+ lazyCompilation?: false | LazyCompilationOptions;
161
+ watch?: Watch;
162
+ watchOptions: WatchOptions;
163
+ devServer?: DevServer;
164
+ ignoreWarnings?: IgnoreWarningsNormalized;
165
+ performance?: Performance;
166
+ profile?: Profile;
167
+ amd?: Amd;
168
+ bail?: Bail;
169
+ }
@@ -0,0 +1,89 @@
1
+ /**
2
+ * @param context the context directory
3
+ * @returns default target
4
+ */
5
+ export declare const getDefaultTarget: (context: string) => "browserslist" | "web";
6
+ export type PlatformTargetProperties = {
7
+ /** web platform, importing of http(s) and std: is available */
8
+ web: boolean | null;
9
+ /** browser platform, running in a normal web browser */
10
+ browser: boolean | null;
11
+ /** (Web)Worker platform, running in a web/shared/service worker */
12
+ webworker: boolean | null;
13
+ /** node platform, require of node built-in modules is available */
14
+ node: boolean | null;
15
+ /** nwjs platform, require of legacy nw.gui is available */
16
+ nwjs: boolean | null;
17
+ /** electron platform, require of some electron built-in modules is available */
18
+ electron: boolean | null;
19
+ };
20
+ export type ElectronContextTargetProperties = {
21
+ /** in main context */
22
+ electronMain: boolean | null;
23
+ /** in preload context */
24
+ electronPreload: boolean | null;
25
+ /** in renderer context with node integration */
26
+ electronRenderer: boolean | null;
27
+ };
28
+ export type ApiTargetProperties = {
29
+ /** has require function available */
30
+ require: boolean | null;
31
+ /** has node.js built-in modules available */
32
+ nodeBuiltins: boolean | null;
33
+ /** node.js allows to use `node:` prefix for core modules */
34
+ nodePrefixForCoreModules: boolean | null;
35
+ /** has document available (allows script tags) */
36
+ document: boolean | null;
37
+ /** has importScripts available */
38
+ importScripts: boolean | null;
39
+ /** has importScripts available when creating a worker */
40
+ importScriptsInWorker: boolean | null;
41
+ /** has fetch function available for WebAssembly */
42
+ fetchWasm: boolean | null;
43
+ /** has global variable available */
44
+ global: boolean | null;
45
+ };
46
+ export type EcmaTargetProperties = {
47
+ /** has globalThis variable available */
48
+ globalThis: boolean | null;
49
+ /** big int literal syntax is available */
50
+ bigIntLiteral: boolean | null;
51
+ /** const and let variable declarations are available */
52
+ const: boolean | null;
53
+ /** arrow functions are available */
54
+ arrowFunction: boolean | null;
55
+ /** for of iteration is available */
56
+ forOf: boolean | null;
57
+ /** destructuring is available */
58
+ destructuring: boolean | null;
59
+ /** async import() is available */
60
+ dynamicImport: boolean | null;
61
+ /** async import() is available when creating a worker */
62
+ dynamicImportInWorker: boolean | null;
63
+ /** ESM syntax is available (when in module) */
64
+ module: boolean | null;
65
+ /** optional chaining is available */
66
+ optionalChaining: boolean | null;
67
+ /** template literal is available */
68
+ templateLiteral: boolean | null;
69
+ /** async functions and await are available */
70
+ asyncFunction: boolean | null;
71
+ };
72
+ type Never<T> = {
73
+ [P in keyof T]?: never;
74
+ };
75
+ type Mix<A, B> = (A & Never<B>) | (Never<A> & B) | (A & B);
76
+ type TargetProperties = Mix<Mix<PlatformTargetProperties, ElectronContextTargetProperties>, Mix<ApiTargetProperties, EcmaTargetProperties>>;
77
+ /**
78
+ * @param target the target
79
+ * @param context the context directory
80
+ * @returns target properties
81
+ */
82
+ export declare const getTargetProperties: (target: string, context: string) => TargetProperties;
83
+ /**
84
+ * @param targets the targets
85
+ * @param context the context directory
86
+ * @returns target properties
87
+ */
88
+ export declare const getTargetsProperties: (targets: string[], context: string) => TargetProperties;
89
+ export {};