You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
520 B

import type { FormatterOptions } from './formatter';
import type { IssueOptions } from './issue/issue-options';
import type { Logger } from './logger';
import type { TypeScriptWorkerOptions } from './typescript/type-script-worker-options';
interface TsCheckerRspackPluginOptions {
async?: boolean;
typescript?: TypeScriptWorkerOptions;
formatter?: FormatterOptions;
issue?: IssueOptions;
logger?: Logger | 'webpack-infrastructure';
devServer?: boolean;
}
export { TsCheckerRspackPluginOptions };