mirror of
https://github.com/replicatedhq/ttl.sh.git
synced 2026-07-11 07:09:18 +00:00
- Complete redesign using shadcn/ui components - Dark/light theme support with next-themes - Modern hero section with terminal animation - Features, How-to, Use Cases, and Time Limits sections - Responsive header with mobile menu - Tailwind CSS v4 with CSS variables for theming - All custom components (Header, Hero, Features, etc.) - Full shadcn/ui component library included Design by Marc via v0.dev Signed-off-by: Marc Campbell <marc.e.campbell@gmail.com>
28 lines
602 B
JSON
28 lines
602 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": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|