Sin descripción

satnaing 68df7a986d chore: update site name and add meta tags hace 2 años
public 68df7a986d chore: update site name and add meta tags hace 2 años
src 68df7a986d chore: update site name and add meta tags hace 2 años
.eslintrc.cjs 105d582ad2 fix: exclude shadcn components from linting and remove unused props hace 2 años
.gitignore 3268ac464f build: init project with Vite hace 2 años
.prettierignore 8aad05e80c chore: implement prettier for code formatting hace 2 años
.prettierrc 65005a93cd feat: add tailwind prettier plugin hace 2 años
LICENSE e8df3b0848 Initial commit hace 2 años
README.md 3268ac464f build: init project with Vite hace 2 años
components.json 914d41a3b5 chore(ui): add and configure shadcn ui hace 2 años
index.html 68df7a986d chore: update site name and add meta tags hace 2 años
package.json 68df7a986d chore: update site name and add meta tags hace 2 años
pnpm-lock.yaml cbcfd9ee36 feat: implement tasks table and page hace 2 años
postcss.config.js 914d41a3b5 chore(ui): add and configure shadcn ui hace 2 años
tailwind.config.js 914d41a3b5 chore(ui): add and configure shadcn ui hace 2 años
tsconfig.json 914d41a3b5 chore(ui): add and configure shadcn ui hace 2 años
tsconfig.node.json 3268ac464f build: init project with Vite hace 2 años
vite.config.ts 914d41a3b5 chore(ui): add and configure shadcn ui hace 2 años

README.md

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 {
    // other rules...
    parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
    },
    }
    
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked

  • Optionally add plugin:@typescript-eslint/stylistic-type-checked

  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list