amati/apps/frontend
2024-11-04 12:42:55 +07:00
..
public Added v2 2024-05-04 04:03:40 +07:00
src update: adjustment of sidebar menu items displayed according to each role 2024-11-04 12:42:55 +07:00
.env.example Improve auth system 2024-05-08 01:27:56 +07:00
.eslintrc.cjs Added v2 2024-05-04 04:03:40 +07:00
.gitignore Added v2 2024-05-04 04:03:40 +07:00
components.json Add shadcn-ui to Frontend 2024-07-25 13:58:51 +07:00
index.html Added v2 2024-05-04 04:03:40 +07:00
package.json update: add dependecies for component alert-dialog using shadcn 2024-11-01 08:31:23 +07:00
postcss.config.js Added v2 2024-05-04 04:03:40 +07:00
README.md Added v2 2024-05-04 04:03:40 +07:00
tailwind.config.js update: Hardcode changes and responsive design adjustments 2024-09-18 13:14:35 +07:00
tsconfig.json Add shadcn-ui to Frontend 2024-07-25 13:58:51 +07:00
tsconfig.node.json Add shadcn-ui to Frontend 2024-07-25 13:58:51 +07:00
vite.config.ts Update : Integrasi on Create Assessment Request 2024-10-03 13:43:20 +07: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