Files
flights_web_raw/ClientApp/node_modules/@rspack/plugin-react-refresh/dist/options.d.ts
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- Angular 12 application with PrimeNG components
- 5 existing Cypress e2e test suites
- SCSS styling with BEM naming convention
- i18n support (10 languages)
- Leaflet map integration
- Complete component hierarchy and routing structure

This baseline will be used for Angular → React migration.
2026-04-05 18:47:57 +03:00

94 lines
3.3 KiB
TypeScript

import type { RuleSetCondition } from '@rspack/core';
import type { IntegrationType } from './utils/getSocketIntegration';
interface OverlayOptions {
entry: string;
module: string;
sockIntegration: IntegrationType | false;
sockHost?: string;
sockPath?: string;
sockPort?: string;
sockProtocol?: string;
}
export type PluginOptions = {
/**
* Specifies which files should be processed by the React Refresh loader.
* This option is passed to the `builtin:react-refresh-loader` as the `rule.test` condition.
* Works identically to Rspack's `rule.test` option.
* @see https://rspack.rs/config/module-rules#rulestest
*/
test?: RuleSetCondition;
/**
* Explicitly includes files to be processed by the React Refresh loader.
* This option is passed to the `builtin:react-refresh-loader` as the `rule.include` condition.
* Use this to limit processing to specific directories or file patterns.
* Works identically to Rspack's `rule.include` option.
* @default /\.([cm]js|[jt]sx?|flow)$/i
* @see https://rspack.rs/config/module-rules#rulesinclude
*/
include?: RuleSetCondition | null;
/**
* Exclude files from being processed by the plugin.
* The value is the same as the `rule.exclude` option in Rspack.
* @default /node_modules/
* @see https://rspack.rs/config/module-rules#rulesexclude
*/
exclude?: RuleSetCondition | null;
/**
* Can be used to exclude certain resources from being processed by
* the plugin by the resource query.
* @see https://rspack.rs/config/module-rules#rulesresourcequery
*
* @example
* To exclude all resources with the `raw` query, such as
* `import rawTs from './ReactComponent.ts?raw';`, use the following:
* ```ts
* { resourceQuery: { not: /raw/ } }
* ```
*/
resourceQuery?: RuleSetCondition;
/**
* Sets a namespace for the React Refresh runtime.
* It is most useful when multiple instances of React Refresh is running
* together simultaneously.
* @default `output.uniqueName || output.library`
*/
library?: string;
/**
* Whether to force enable the plugin.
* By default, the plugin will not be enabled in non-development environments.
* If you want to force enable the plugin, you can set this option to `true`.
* @default false
*/
forceEnable?: boolean;
/**
* Modify the behavior of the error overlay.
* @default false
*/
overlay?: boolean | Partial<OverlayOptions>;
/**
* Whether to inject the builtin:react-refresh-loader
* @default true
*/
injectLoader?: boolean;
/**
* Whether to inject the client/reactRefreshEntry.js
* @default true
*/
injectEntry?: boolean;
/**
* Whether to reload the page on runtime errors. E.g: undefined module factory
* @default false
*/
reloadOnRuntimeErrors?: boolean;
/**
* Allows to specify custom react-refresh loader
* @default "builtin:react-refresh-loader"
*/
reactRefreshLoader?: string;
};
export interface NormalizedPluginOptions extends Required<PluginOptions> {
overlay: false | OverlayOptions;
}
export declare function normalizeOptions(options: PluginOptions): NormalizedPluginOptions;
export {};