compilerSetup.d.ts 624 B

12345678910111213
  1. import type * as typescript from 'typescript';
  2. import type { LoaderOptions } from './interfaces';
  3. import type * as logger from './logger';
  4. export declare function getCompiler(loaderOptions: LoaderOptions, log: logger.Logger): {
  5. compiler: typeof typescript | undefined;
  6. compilerCompatible: boolean;
  7. compilerDetailsLogMessage: string | undefined;
  8. errorMessage: string | undefined;
  9. };
  10. export declare function getCompilerOptions(configParseResult: typescript.ParsedCommandLine, compiler: typeof typescript): {
  11. skipLibCheck: boolean;
  12. } & typescript.CompilerOptions;
  13. //# sourceMappingURL=compilerSetup.d.ts.map