monorepo/apps/admin
wei 7d6b4aaf79 search 2024-07-18 06:15:41 +00:00
..
public 111 2024-06-25 13:59:50 +00:00
scripts 111 2024-06-25 13:59:50 +00:00
src search 2024-07-18 06:15:41 +00:00
.eslintignore 111 2024-06-25 13:59:50 +00:00
.eslintrc.cjs 111 2024-06-25 13:59:50 +00:00
.gitignore admin locale 2024-07-02 01:21:48 +00:00
.prettierrc.cjs 111 2024-06-25 13:59:50 +00:00
.prettierrcignore 111 2024-06-25 13:59:50 +00:00
.stylelintignore 111 2024-06-25 13:59:50 +00:00
.stylelintrc.cjs 111 2024-06-25 13:59:50 +00:00
README.md 111 2024-06-25 13:59:50 +00:00
index.html 111 2024-06-25 13:59:50 +00:00
package.json admin locale 2024-07-02 01:21:48 +00:00
pnpm-lock.yaml 111 2024-06-25 13:59:50 +00:00
postcss.config.cjs 111 2024-06-25 13:59:50 +00:00
tailwind.config.cjs 111 2024-06-25 13:59:50 +00:00
tsconfig.eslint.json 111 2024-06-25 13:59:50 +00:00
tsconfig.json 111 2024-06-25 13:59:50 +00:00
tsconfig.node.json 111 2024-06-25 13:59:50 +00:00
vite.config.ts 111 2024-06-25 13:59:50 +00: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