zrok/agent/agentUi
2024-11-20 14:10:34 -05:00
..
public agent console iteration (#221) 2024-10-04 15:38:47 -04:00
src scaffolding (#724) 2024-11-20 14:10:34 -05:00
.gitignore next.js -> vite.js (#221) 2024-10-04 11:20:11 -04:00
embed.go both production and development builds now working with vite.js (#221) 2024-10-04 11:43:54 -04:00
eslint.config.js replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -05:00
index.html scaffolding (#724) 2024-11-20 14:10:34 -05:00
middleware.go update middleware for agent ui to work properly on windows (#221) 2024-10-04 12:59:16 -04:00
package-lock.json idiomatic lint (#221) 2024-11-19 21:20:19 -05:00
package.json idiomatic lint (#221) 2024-11-19 21:20:19 -05:00
README.md replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -05:00
tsconfig.app.json replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -05:00
tsconfig.json replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -05:00
tsconfig.node.json replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -05:00
vite.config.ts replaced the old javascript 'agentUi' with the new typescript 'agentUi' (#221) 2024-11-19 15:30:24 -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 tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})