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>
16 lines
416 B
Text
16 lines
416 B
Text
{
|
|
"extends": "../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
// Limit defs to base JS and DOM (for URL: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/34960).
|
|
"lib": ["es2020", "dom"],
|
|
// Only include `@types/node` from node_modules/.
|
|
"types": ["node"],
|
|
},
|
|
"references": [
|
|
{"path": "../../types/lhr/"},
|
|
{"path": "../../shared/"},
|
|
],
|
|
"include": [
|
|
"**/*.js",
|
|
],
|
|
}
|