Go to file
SwiftHawk 96587e3e6a
All checks were successful
Release / build_and_release (push) Successful in 55s
update relay url
2024-04-08 17:53:47 +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 update relay url 2024-04-08 17:53:47 +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
contributing.md add contributing.md 2024-04-05 12:17:47 +05:00
index.html chore: initialized vite app 2024-02-27 19:03:15 +05:00
package-lock.json feat: create signing request and send a DM to first signer with zip file url and encryption key 2024-04-08 17:45:51 +05:00
package.json feat: create signing request and send a DM to first signer with zip file url and encryption key 2024-04-08 17:45:51 +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