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>
25 lines
565 B
Text
25 lines
565 B
Text
{
|
|
"extends": "../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
// Limit to base JS and DOM defs.
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
// Selectively include types from node_modules/.
|
|
"types": ["node", "mocha"],
|
|
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
},
|
|
"references": [
|
|
{"path": "../types/lhr/"},
|
|
{"path": "../report"},
|
|
{"path": "../shared"},
|
|
],
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"./types",
|
|
"../types/internal/test.d.ts",
|
|
"../core/test/test-env/fake-timers.js",
|
|
],
|
|
}
|