test/apps/admin
2024-05-15 09:42:19 +08:00
..
public init 2024-05-08 00:24:43 +08:00
scripts update 2024-05-10 06:29:02 +08:00
src update 2024-05-15 09:42:19 +08:00
.eslintignore init 2024-05-08 00:24:43 +08:00
.eslintrc.cjs init 2024-05-08 00:24:43 +08:00
.gitignore init 2024-05-08 00:24:43 +08:00
.prettierrc.cjs init 2024-05-08 00:24:43 +08:00
.prettierrcignore init 2024-05-08 00:24:43 +08:00
.stylelintignore init 2024-05-08 00:24:43 +08:00
.stylelintrc.cjs update 2024-05-11 05:52:36 +08:00
index.html init 2024-05-08 00:24:43 +08:00
package.json update 2024-05-15 06:36:45 +08:00
postcss.config.cjs init 2024-05-08 00:24:43 +08:00
README.md init 2024-05-08 00:24:43 +08:00
tailwind.config.js init 2024-05-08 00:24:43 +08:00
tsconfig.eslint.json init 2024-05-08 00:24:43 +08:00
tsconfig.json init 2024-05-08 00:24:43 +08:00
tsconfig.node.json init 2024-05-08 00:24:43 +08:00
vite.config.ts init 2024-05-08 00:24:43 +08: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