ai_sandbox/speech-speech
Andrei Stoica 25dc7e42b4 recording and playing back sound 2024-02-19 19:03:08 -05:00
..
public recording and playing back sound 2024-02-19 19:03:08 -05:00
src recording and playing back sound 2024-02-19 19:03:08 -05:00
.eslintrc.cjs recording and playing back sound 2024-02-19 19:03:08 -05:00
.gitignore recording and playing back sound 2024-02-19 19:03:08 -05:00
README.md recording and playing back sound 2024-02-19 19:03:08 -05:00
index.html recording and playing back sound 2024-02-19 19:03:08 -05:00
package-lock.json recording and playing back sound 2024-02-19 19:03:08 -05:00
package.json recording and playing back sound 2024-02-19 19:03:08 -05:00
postcss.config.js recording and playing back sound 2024-02-19 19:03:08 -05:00
tailwind.config.js recording and playing back sound 2024-02-19 19:03:08 -05:00
tsconfig.json recording and playing back sound 2024-02-19 19:03:08 -05:00
tsconfig.node.json recording and playing back sound 2024-02-19 19:03:08 -05:00
vite.config.ts recording and playing back sound 2024-02-19 19:03:08 -05: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