16 lines
535 B
Plaintext
16 lines
535 B
Plaintext
import { TypeCheckResult } from './typescript/runTypeCheck';
|
|
export declare function verifyTypeScriptSetup({ dir, distDir, cacheDir, intentDirs, tsconfigPath, typeCheckPreflight, disableStaticImages, hasAppDir, hasPagesDir, }: {
|
|
dir: string;
|
|
distDir: string;
|
|
cacheDir?: string;
|
|
tsconfigPath: string;
|
|
intentDirs: string[];
|
|
typeCheckPreflight: boolean;
|
|
disableStaticImages: boolean;
|
|
hasAppDir: boolean;
|
|
hasPagesDir: boolean;
|
|
}): Promise<{
|
|
result?: TypeCheckResult;
|
|
version: string | null;
|
|
}>;
|