supermemory/apps/extension
2024-03-31 23:50:07 -07:00
..
icons feat: Added AI query UI 2024-03-01 11:43:40 -07:00
public chaos 2024-02-23 16:04:49 -07:00
src fix: donechunk fix 2024-03-31 23:50:07 -07:00
.eslintrc.cjs chaos 2024-02-23 16:04:49 -07:00
.gitignore fix: auth in extension 2024-03-31 23:22:35 -07:00
components.json extension workoing 2024-02-28 19:14:12 -07:00
index.html chaos 2024-02-23 16:04:49 -07:00
manifest.json feat: Added AI query UI 2024-03-01 11:43:40 -07:00
package.json fix: auth in extension 2024-03-31 23:22:35 -07:00
postcss.config.js chaos 2024-02-23 16:04:49 -07:00
README.md (ci): update CI again 2024-03-31 17:21:36 -07:00
tailwind.config.js extension workoing 2024-02-28 19:14:12 -07:00
tsconfig.json chaos 2024-02-23 16:04:49 -07:00
tsconfig.node.json chaos 2024-02-23 16:04:49 -07:00
vite.config.ts feat: Added AI query UI 2024-03-01 11:43:40 -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