Go to file
rakhimovkamran a9111959cd | Auth on view content 2024-10-27 17:57:03 +05:00
public feat: viewContent page by mik 2024-05-24 13:48:39 +03:00
src | Auth on view content 2024-10-27 17:57:03 +05:00
.gitignore dev@locazia: mik ver 2024-03-28 01:26:43 +03:00
README.md dev@locazia: mik ver 2024-03-28 01:26:43 +03:00
index.html Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
package-lock.json Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
package.json feat: viewContent page by mik 2024-05-24 13:48:39 +03:00
postcss.config.js Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
prettier.config.cjs Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
tailwind.config.ts Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
tsconfig.json Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
tsconfig.node.json Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
vercel.json dev@locazia: mik ver 2024-03-28 01:26:43 +03:00
vite.config.ts Locazia: v2.0 (dev beta) 2024-03-04 23:36:45 +03:00
yarn.lock feat: viewContent page by mik 2024-05-24 13:48:39 +03: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