findtheti.me/frontend
2024-01-13 15:13:44 +02:00
..
public Initial commit 2024-01-08 20:09:26 +02:00
src Fix availability times sometimes not combining correctly 2024-01-13 15:13:44 +02:00
.eslintrc.cjs Initial commit 2024-01-08 20:09:26 +02:00
.gitignore Initial commit 2024-01-08 20:09:26 +02:00
index.html Add og meta tags for embeds 2024-01-11 21:42:06 +02:00
package-lock.json Initial commit 2024-01-08 20:09:26 +02:00
package.json Add copy to clipboard button for invite url 2024-01-12 16:05:26 +02:00
README.md Initial commit 2024-01-08 20:09:26 +02:00
tsconfig.json Fully operational 2024-01-11 12:52:41 +02:00
tsconfig.node.json Initial commit 2024-01-08 20:09:26 +02:00
vite.config.ts Fix availability times sometimes not combining correctly 2024-01-13 15:13:44 +02:00
yarn.lock Add copy to clipboard button for invite url 2024-01-12 16:05:26 +02: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