Passport/pkg/views/README.md

31 lines
1.3 KiB
Markdown
Raw Normal View History

2024-02-25 15:12:42 +00:00
# React + TypeScript + Vite
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
Currently, two official plugins are available:
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
## Expanding the ESLint configuration
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
- Configure the top-level `parserOptions` property like this:
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
```js
export default {
// other rules...
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
}
```
2024-01-27 16:05:19 +00:00
2024-02-25 15:12:42 +00:00
- 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](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list