Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/b3ccd584e80e1aeed4ce8febf97f4fe091c32b27331409ffff058369aae667c931ad8b7e5a8af330d7fd450190b7bb7f80f3f482b0c8a39deeeb025d6bde46
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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",
],
}