- Add package.json with dependencies for TanStack, HeroUI, and Vite. - Include favicon, logos, and manifest for PWA support. - Create global styles with Tailwind CSS and HeroUI. - Set up TypeScript configuration for the project. - Implement routing with TanStack Router and context for React Query. - Create root and index routes with basic application structure. - Add integration files for HeroUI and TanStack Query. - Configure Vite with necessary plugins for React and Tailwind CSS.
34 lines
852 B
JSON
34 lines
852 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@lib/*": ["./src/lib/*"],
|
|
"@styles/*": ["./src/styles/*"],
|
|
"@assets/*": ["./src/assets/*"],
|
|
"@integrations/*": ["./src/integrations/*"]
|
|
}
|
|
}
|
|
}
|