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>
11 lines
470 B
Text
11 lines
470 B
Text
/**
|
|
* This is a TypeScript language service plugin for Next.js app directory,
|
|
* it provides the following features:
|
|
*
|
|
* - Warns about disallowed React APIs in server components.
|
|
* - Warns about disallowed layout and page exports.
|
|
* - Autocompletion for entry configurations.
|
|
* - Hover hint and docs for entry configurations.
|
|
*/
|
|
import type tsModule from 'typescript/lib/tsserverlibrary';
|
|
export declare const createTSPlugin: tsModule.server.PluginModuleFactory;
|