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>
15 lines
514 B
Text
15 lines
514 B
Text
import type { NextConfigComplete } from '../server/config-shared';
|
|
export declare function parseJsonFile(filePath: string): any;
|
|
export type ResolvedBaseUrl = {
|
|
baseUrl: string;
|
|
isImplicit: boolean;
|
|
} | undefined;
|
|
export type JsConfig = {
|
|
compilerOptions: Record<string, any>;
|
|
} | undefined;
|
|
export default function loadJsConfig(dir: string, config: NextConfigComplete): Promise<{
|
|
useTypeScript: boolean;
|
|
jsConfig: JsConfig;
|
|
jsConfigPath?: string;
|
|
resolvedBaseUrl: ResolvedBaseUrl;
|
|
}>;
|