This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2024-04-04 23:35:50 +02:00
public feat: Import de design de test 2024-04-04 18:21:17 +02:00
src feat: Changement de type de router 2024-04-04 23:35:50 +02:00
.eslintrc.cjs feat: Initialisation du projet avec vitejs 2024-04-04 14:39:59 +02:00
.gitignore feat: Initialisation du projet avec vitejs 2024-04-04 14:39:59 +02:00
components.json feat: Init shadcn-ui 2024-04-04 14:44:15 +02:00
index.html feat: Initialisation du projet avec vitejs 2024-04-04 14:39:59 +02:00
package-lock.json feat: Ajout de plus de taches 2024-04-04 23:33:16 +02:00
package.json feat: Ajout de plus de taches 2024-04-04 23:33:16 +02:00
postcss.config.js feat: Init shadcn-ui 2024-04-04 14:44:15 +02:00
README.md feat: Initialisation du projet avec vitejs 2024-04-04 14:39:59 +02:00
tailwind.config.js feat: Init shadcn-ui 2024-04-04 14:44:15 +02:00
tsconfig.json feat: Init shadcn-ui 2024-04-04 14:44:15 +02:00
tsconfig.node.json feat: Initialisation du projet avec vitejs 2024-04-04 14:39:59 +02:00
tsconfig.scripts.json feat: Ajout de plus de taches 2024-04-04 23:33:16 +02:00
vite.config.ts feat: Ajout de la vue des tâches 2024-04-04 23:11:29 +02:00

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