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
422 B
Text
15 lines
422 B
Text
{
|
|
"extends": "@cloudflare/workers-tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["@cloudflare/workers-types"]
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": [
|
|
"__tests__",
|
|
"./init-tests/**",
|
|
// Note: `startDevWorker` and `middleware` should also be included but some work is needed
|
|
// for that first (see: https://github.com/cloudflare/workers-sdk/issues/8303)
|
|
"startDevWorker",
|
|
"middleware"
|
|
]
|
|
}
|