blakeblackshear.frigate/web
Josh Hawkins 51dcdd6f4b
Zone/mask editor improvements (#11236)
* add points to completed polygons in zone/mask editor

* change line order so edges are more easily clickable
2024-05-04 08:37:35 -06:00
..
images
public
src Zone/mask editor improvements (#11236) 2024-05-04 08:37:35 -06:00
themes sane colors for themes (#11126) 2024-04-26 14:30:57 -06:00
.eslintrc.cjs
.gitignore
components.json
index.html
package-lock.json Add status bar provider (#11066) 2024-04-22 08:20:23 -06:00
package.json Add status bar provider (#11066) 2024-04-22 08:20:23 -06:00
postcss.config.js
README.md Use new UI (#8983) 2024-01-31 12:56:11 +00:00
site.webmanifest Don't use apple icon for android pwa (#10535) 2024-03-19 08:41:24 -05:00
tailwind.config.js UI Fixes (#11179) 2024-04-30 19:35:23 -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