- 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.
37 lines
655 B
JSON
37 lines
655 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": [
|
|
"**/src/**/*",
|
|
"**/.vscode/**/*",
|
|
"**/index.html",
|
|
"**/vite.config.js",
|
|
"!**/src/routeTree.gen.ts"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"trailingCommas": "none",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
}
|
|
}
|