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>
29 lines
593 B
Text
29 lines
593 B
Text
{
|
|
"compilerOptions": {
|
|
"outDir": ".tmp/tsbuildinfo/",
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true,
|
|
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
// Limit to base JS and DOM defs.
|
|
"lib": ["esnext", "dom"]
|
|
},
|
|
"include": [
|
|
"*.mjs",
|
|
"test/*.mjs",
|
|
"generated/protocol.d.ts",
|
|
"third_party/third-party-web/third-party-web.js",
|
|
"package.json"
|
|
]
|
|
}
|