feat(01-01): scaffold Vite 6 + React 18 + TypeScript 5 project
- Created Vite 6 project with React 18 and TypeScript 5 template - Installed zod, react-hook-form, @hookform/resolvers (production) - Installed tailwindcss @tailwindcss/vite (Tailwind v4 via Vite plugin) - Installed vitest, @testing-library/react, @testing-library/dom (dev) - Configured Tailwind v4 via @tailwindcss/vite plugin in vite.config.ts - Set src/index.css to @import "tailwindcss" (no postcss/tailwind.config.js) - Created minimal App.tsx with Tailwind classes, .gitignore - Auto-fix (Rule 1): added src/vite-env.d.ts for CSS module type declarations
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"isolatedModules": true,
|
||||
"moduleDetection": "force",
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx",
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedSideEffectImports": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
Reference in New Issue
Block a user