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.
14 lines
610 B
14 lines
610 B
import { TypeScriptReporterOptions } from './typescript-reporter/TypeScriptReporterOptions'; |
|
import { EsLintReporterOptions } from './eslint-reporter/EsLintReporterOptions'; |
|
import { IssueOptions } from './issue/IssueOptions'; |
|
import { FormatterOptions } from './formatter'; |
|
import LoggerOptions from './logger/LoggerOptions'; |
|
interface ForkTsCheckerWebpackPluginOptions { |
|
async?: boolean; |
|
typescript?: TypeScriptReporterOptions; |
|
eslint?: EsLintReporterOptions; |
|
formatter?: FormatterOptions; |
|
issue?: IssueOptions; |
|
logger?: LoggerOptions; |
|
} |
|
export { ForkTsCheckerWebpackPluginOptions };
|
|
|