Prepare v1.8.2 release
Some checks failed
PR Checks / check_pr (push) Has been cancelled

This commit is contained in:
Nick Cipollo
2021-03-21 19:49:19 -04:00
parent 9b14e2e2d3
commit 8f5d96dce1
7101 changed files with 1855611 additions and 2 deletions

28
node_modules/ts-jest/dist/config/config-set.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import type { Config } from '@jest/types';
import { Logger } from 'bs-logger';
import { CompilerOptions, CustomTransformers, Diagnostic, ParsedCommandLine } from 'typescript';
import type { TTypeScript } from '../types';
export declare class ConfigSet {
private readonly jestConfig;
private readonly parentLogger?;
readonly logger: Logger;
readonly compilerModule: TTypeScript;
readonly isolatedModules: boolean;
readonly cwd: string;
tsCacheDir: string | undefined;
parsedTsConfig: ParsedCommandLine | Record<string, any>;
customTransformers: CustomTransformers;
readonly rootDir: string;
protected _overriddenCompilerOptions: Partial<CompilerOptions>;
constructor(jestConfig: Config.ProjectConfig, parentLogger?: Logger | undefined);
protected _resolveTsConfig(compilerOptions?: CompilerOptions, resolvedConfigFile?: string): Record<string, any>;
get tsJestDigest(): string;
isTestFile(fileName: string): boolean;
shouldStringifyContent(filePath: string): boolean;
raiseDiagnostics(diagnostics: Diagnostic[], filePath?: string, logger?: Logger): void;
shouldReportDiagnostics(filePath: string): boolean;
resolvePath(inputPath: string, { throwIfMissing, nodeResolve }?: {
throwIfMissing?: boolean;
nodeResolve?: boolean;
}): string;
}