Go to file
Kieran 85cce89229
fix: map reset
2024-01-02 11:17:57 +00:00
.vscode Init 2023-12-30 19:38:25 +00:00
.yarn Init 2023-12-30 19:38:25 +00:00
public Init 2023-12-30 19:38:25 +00:00
src fix: map reset 2024-01-02 11:17:57 +00:00
.eslintrc.cjs Init 2023-12-30 19:38:25 +00:00
.gitignore Init 2023-12-30 19:38:25 +00:00
.yarnrc.yml feat: add map 2023-12-31 22:20:21 +00:00
README.md Init 2023-12-30 19:38:25 +00:00
index.html Init 2023-12-30 19:38:25 +00:00
package.json feat: add map 2023-12-31 22:20:21 +00:00
postcss.config.js Init 2023-12-30 19:38:25 +00:00
tailwind.config.js Init 2023-12-30 19:38:25 +00:00
tsconfig.json feat: relay detail page 2023-12-31 00:17:11 +00:00
tsconfig.node.json Init 2023-12-30 19:38:25 +00:00
vite.config.ts Init 2023-12-30 19:38:25 +00:00
yarn.lock feat: add map 2023-12-31 22:20:21 +00: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