UNPKG

vite-plugin-checker

Version:

Vite plugin that runs TypeScript type checker on a separate process.

19 lines (17 loc) 464 B
/** * Translate parsed CLI options, choosing the appropriate format based on * whether flat config mode is being used. */ declare function translateOptions(options: any, useFlatConfig?: boolean): { allowInlineConfig: any; cache: any; cacheLocation: any; cacheStrategy: any; errorOnUnmatchedPattern: any; fix: any; fixTypes: any; ignore: any; overrideConfig: any; overrideConfigFile: any; }; export { translateOptions };