snowballtools-base/packages/frontend
2024-05-01 15:03:59 -05:00
..
public Signup with sdk 2024-04-23 21:21:58 -05:00
src Support not having bugsnag available 2024-05-01 15:03:59 -05:00
.env.example Signup with sdk 2024-04-23 21:21:58 -05:00
.eslintrc.cjs Lint using tsc; fix type errors 2024-04-11 21:49:14 -05:00
.gitignore Switch from cra to vite 2024-04-11 21:48:58 -05:00
.node-version Switch from cra to vite 2024-04-11 21:48:58 -05:00
.prettierrc.json Create react app with tailwind, typescript, eslint and prettier (#4) 2023-12-08 10:50:55 +05:30
index.html Lint using tsc; fix type errors 2024-04-11 21:49:14 -05:00
package.json Add bugsnag 2024-05-01 15:00:52 -05:00
postcss.config.js Lint using tsc; fix type errors 2024-04-11 21:49:14 -05:00
README.md Lint using tsc; fix type errors 2024-04-11 21:49:14 -05:00
reload-dev.sh Signup with sdk 2024-04-23 21:21:58 -05:00
tailwind.config.js Signup with sdk 2024-04-23 21:21:58 -05:00
tsconfig.json Lint using tsc; fix type errors 2024-04-11 21:49:14 -05:00
tsconfig.node.json Switch from cra to vite 2024-04-11 21:48:58 -05:00
vite.config.ts Attempt to fix prod 2024-04-24 19:02:52 -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