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>
21 lines
427 B
Text
21 lines
427 B
Text
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"stripInternal": true,
|
|
"lib": ["es2015"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/data"
|
|
]
|
|
}
|