NAPPDesafio/spa
2024-07-21 00:33:23 -03:00
..
public send all files 2024-07-21 00:15:14 -03:00
src feat: added view audit products 2024-07-21 00:33:23 -03:00
.eslintrc.cjs send all files 2024-07-21 00:15:14 -03:00
.exemple.env send all files 2024-07-21 00:15:14 -03:00
.gitignore send all files 2024-07-21 00:15:14 -03:00
Dockerfile send all files 2024-07-21 00:15:14 -03:00
index.html send all files 2024-07-21 00:15:14 -03:00
package-lock.json send all files 2024-07-21 00:15:14 -03:00
package.json send all files 2024-07-21 00:15:14 -03:00
README.md send all files 2024-07-21 00:15:14 -03:00
tsconfig.app.json send all files 2024-07-21 00:15:14 -03:00
tsconfig.json send all files 2024-07-21 00:15:14 -03:00
tsconfig.node.json send all files 2024-07-21 00:15:14 -03:00
vite.config.ts send all files 2024-07-21 00:15:14 -03: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', './tsconfig.app.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