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>
23 lines
547 B
Text
23 lines
547 B
Text
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"target": "es2019",
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"inlineSourceMap": true,
|
|
"noEmitOnError": false,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"src",
|
|
]
|
|
}
|