blakeblackshear.frigate/web
dependabot[bot] 41da8e8b25
Bump react-router-dom from 6.20.1 to 6.22.2 in /web (#10148)
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.20.1 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-02 13:35:34 -07:00
..
images
public
src Update frontend colors to match style guide (#10188) 2024-03-02 09:00:50 -06:00
themes Update frontend colors to match style guide (#10188) 2024-03-02 09:00:50 -06:00
.eslintrc.cjs Fix linter and fix lint issues (#10141) 2024-02-28 16:23:56 -06:00
.gitignore
components.json
index.html
package-lock.json Bump react-router-dom from 6.20.1 to 6.22.2 in /web (#10148) 2024-03-02 13:35:34 -07:00
package.json Bump react-router-dom from 6.20.1 to 6.22.2 in /web (#10148) 2024-03-02 13:35:34 -07:00
postcss.config.js Fix linter and fix lint issues (#10141) 2024-02-28 16:23:56 -06:00
README.md
tailwind.config.js Update frontend colors to match style guide (#10188) 2024-03-02 09:00:50 -06:00
tsconfig.json
tsconfig.node.json
vite.config.ts Fix linter and fix lint issues (#10141) 2024-02-28 16:23:56 -06: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