feat: 2048 Game - React + TypeScript

Classic 2048 puzzle game with modern stack.

Features:
- Smooth tile sliding animations (framer-motion)
- Mobile swipe support
- Official 2048 game logic

Infrastructure:
- AWS S3 + CloudFront hosting
- GitHub Actions CI/CD
- Nightly dependency updates

Tech: React 18, TypeScript, Vite, Tailwind CSS
This commit is contained in:
2026-02-01 20:06:13 +00:00
commit 2d621a9b5f
36 changed files with 8530 additions and 0 deletions

24
tsconfig.app.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}