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>
24 lines
584 B
Text
24 lines
584 B
Text
{
|
|
"extends": "../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
// Limit to base JS and DOM defs.
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
// Don't include any types from node_modules/.
|
|
"types": [],
|
|
},
|
|
"references": [
|
|
{"path": "../types/lhr/"},
|
|
{"path": "./generator/"},
|
|
{"path": "../shared/"}
|
|
],
|
|
"include": [
|
|
"**/*.js",
|
|
"types/**/*.d.ts",
|
|
"../core/lib/lighthouse-compatibility.js",
|
|
],
|
|
"exclude": [
|
|
"generator/**/*.js",
|
|
// These test files require further changes before they can be type checked.
|
|
"test/**/*.js",
|
|
],
|
|
}
|