Go to file
Sabir Hassan e57893b1b2
All checks were successful
Release / build_and_release (push) Successful in 43s
chore: no need to expire auth token
2024-03-20 09:44:10 +05:00
.gitea/workflows chore: fix workflow 2024-03-01 16:35:23 +05:00
public chore: initialized vite app 2024-02-27 19:03:15 +05:00
src chore: no need to expire auth token 2024-03-20 09:44:10 +05:00
.env.example chore: implemented basic layout and login page 2024-02-28 21:49:44 +05:00
.eslintrc.cjs chore: implemented basic layout and login page 2024-02-28 21:49:44 +05:00
.gitignore chore: fix appBar 2024-02-29 12:05:05 +05:00
index.html chore: initialized vite app 2024-02-27 19:03:15 +05:00
package-lock.json feat: implemented profile page 2024-03-01 15:16:35 +05:00
package.json feat: implemented profile page 2024-03-01 15:16:35 +05:00
README.md chore: initialized vite app 2024-02-27 19:03:15 +05:00
tsconfig.json chore: initialized vite app 2024-02-27 19:03:15 +05:00
tsconfig.node.json chore: initialized vite app 2024-02-27 19:03:15 +05:00
vite.config.ts chore: initialized vite app 2024-02-27 19:03:15 +05: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