rybbit/docs/tsconfig.json
Bill Yang 6812db0f39 Enhance styling and functionality in IndexPage and update dependencies
- Added new CSS variables and animations in globals.css for improved design consistency.
- Updated IndexPage layout with background gradients and integrated new components: Integrations, Logo, and AnimatedShinyText for enhanced user engagement.
- Included new dependencies: class-variance-authority, clsx, motion, and tailwind-merge in package.json and package-lock.json for better styling and animation capabilities.
- Updated TypeScript version in devDependencies for improved type checking.
2025-04-21 00:08:01 -07:00

40 lines
No EOL
831 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"
]
}