Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
613 B
Text
16 lines
613 B
Text
import type { TypeCheckResult } from './typescript/runTypeCheck';
|
|
export declare function verifyTypeScriptSetup({ dir, distDir, cacheDir, intentDirs, tsconfigPath, typeCheckPreflight, disableStaticImages, hasAppDir, hasPagesDir, isolatedDevBuild, }: {
|
|
dir: string;
|
|
distDir: string;
|
|
cacheDir?: string;
|
|
tsconfigPath: string | undefined;
|
|
intentDirs: string[];
|
|
typeCheckPreflight: boolean;
|
|
disableStaticImages: boolean;
|
|
hasAppDir: boolean;
|
|
hasPagesDir: boolean;
|
|
isolatedDevBuild: boolean | undefined;
|
|
}): Promise<{
|
|
result?: TypeCheckResult;
|
|
version: string | null;
|
|
}>;
|