Go to file
andrzej 84d3bcf68e build hamburger menu 2024-05-22 13:39:10 +02:00
public vite create, import tmdb wrapper 2024-04-29 13:19:01 +02:00
src build hamburger menu 2024-05-22 13:39:10 +02:00
.eslintrc.cjs vite create, import tmdb wrapper 2024-04-29 13:19:01 +02:00
.gitignore ongoing 2024-05-05 23:59:33 +02:00
README.md first commit 2024-04-29 13:18:13 +02:00
index.html improve transitions 2024-05-17 14:43:02 +02:00
package-lock.json install react-crossfade-image 2024-05-17 14:43:16 +02:00
package.json install react-crossfade-image 2024-05-17 14:43:16 +02:00
tsconfig.json vite create, import tmdb wrapper 2024-04-29 13:19:01 +02:00
tsconfig.node.json vite create, import tmdb wrapper 2024-04-29 13:19:01 +02:00
vite.config.ts vite create, import tmdb wrapper 2024-04-29 13:19:01 +02:00

README.md

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