supermemory/apps/extension
2024-04-13 11:54:32 -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 resolved conflicts 2024-04-13 11:40:01 -07:00
.eslintrc.cjs extension styling such that website content is not affected https://twitter.com/DhravyaShah/status/1778189224396922948 2024-04-10 15:36:51 -07:00
.gitignore fix: auth in extension 2024-03-31 23:22:35 -07:00
components.json extension styling such that website content is not affected https://twitter.com/DhravyaShah/status/1778189224396922948 2024-04-10 15:36:51 -07:00
index.html chaos 2024-02-23 16:04:49 -07:00
manifest.json switch to cloudfalre 2024-04-13 01:45:17 -07:00
package.json merge 2024-04-13 09:14:37 -07:00
postcss.config.js extension styling such that website content is not affected https://twitter.com/DhravyaShah/status/1778189224396922948 2024-04-10 15:36:51 -07:00
README.md extension styling such that website content is not affected https://twitter.com/DhravyaShah/status/1778189224396922948 2024-04-10 15:36:51 -07:00
tailwind.config.js merge 2024-04-12 13:10:50 -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 extension styling such that website content is not affected https://twitter.com/DhravyaShah/status/1778189224396922948 2024-04-10 15:36:51 -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