blakeblackshear.frigate/web
2024-04-07 15:37:54 -05:00
..
images
public
src Improve Landscape mobile views (#10873) 2024-04-07 15:37:33 -05:00
themes Redesign logs page (#10853) 2024-04-07 15:36:08 -05:00
.eslintrc.cjs
.gitignore Use new UI (#8983) 2024-01-31 12:56:11 +00:00
components.json
index.html use credentials for webmanifest (#10447) 2024-03-14 06:36:56 -06:00
package-lock.json Update web deps (#10875) 2024-04-07 15:37:54 -05:00
package.json Update web deps (#10875) 2024-04-07 15:37:54 -05:00
postcss.config.js
README.md Use new UI (#8983) 2024-01-31 12:56:11 +00:00
site.webmanifest
tailwind.config.js Redesign logs page (#10853) 2024-04-07 15:36:08 -05:00
tsconfig.json
tsconfig.node.json
vite.config.ts

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