GitXplorerGitXplorer
b

TargetMemory

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
f4dcf561288d34c52837905bfcaac3fc8697e552

style

committed a month ago
Unverified
08a4a01c275cceb73aa38888c122b103fae070bb

removed extra parentheses

committed a month ago
Unverified
d1a318f07a31c27f11c5b69c4a12a6e317e86be5

fixing Typescript issues

committed a month ago
Unverified
373cea3a2c7e629e048d3f53c93b6d8ff127bc21

typescript errors

committed 2 months ago
Unverified
34f50716caa9bc4ac8c10a23ab7ef275899dae54

Add shadcn/ui components and update configuration

committed 2 months ago
Unverified
047d3c1e0ac57c15166034a32a19284ba5e935f7

Convert project from JavaScript to TypeScript and add Tailwind/shadcn-ui setup

committed 2 months ago

README

The README file for this repository.

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})