Files
landing/tsconfig.json
Jason Woltje b8ba61565e Initial landing page for SagePHR
- Hero section with clear value prop
- Problem/solution framing
- Feature grid
- Pricing section (early adopter /mo)
- Email waitlist signup (Formspree)
- Responsive design
- Dark theme with sage green accent
2026-03-03 12:24:43 -06:00

22 lines
562 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": { "@/*": ["./*"] }
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}