No description
This repository has been archived on 2026-06-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • TypeScript 67%
  • CSS 27.3%
  • HTML 5.7%
Find a file
2024-06-24 21:23:48 +03:00
public first commit 2024-06-24 14:17:48 +03:00
src added props to onSubmit action 2024-06-24 21:23:48 +03:00
.eslintrc.cjs first commit 2024-06-24 14:17:48 +03:00
.gitignore first commit 2024-06-24 14:17:48 +03:00
index.html first commit 2024-06-24 14:17:48 +03:00
package-lock.json removed @reatom/core package from list of project dependencies and updated subscription in app 2024-06-24 14:44:20 +03:00
package.json removed @reatom/core package from list of project dependencies and updated subscription in app 2024-06-24 14:44:20 +03:00
README.md first commit 2024-06-24 14:17:48 +03:00
tsconfig.app.json first commit 2024-06-24 14:17:48 +03:00
tsconfig.json first commit 2024-06-24 14:17:48 +03:00
tsconfig.node.json first commit 2024-06-24 14:17:48 +03:00
vite.config.ts first commit 2024-06-24 14:17:48 +03: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