Skip to content

Files

Latest commit

f0cfb18 · Apr 30, 2025

History

History

copilot-ui

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 18, 2024
Aug 6, 2024
Apr 30, 2025
Jun 14, 2024
Jun 18, 2024
Jun 13, 2024
Feb 5, 2025
Jun 18, 2024
Jun 18, 2024
Jun 28, 2024
Jun 28, 2024
Jun 28, 2024
Jun 18, 2024
Jun 18, 2024
Jun 18, 2024
Jun 13, 2024
Jul 12, 2024

** Please note, we are using 'pnpm' for module installations. You will save a lot of space on your disk proportional to the number of projects and dependencies, and you have a lot faster installations!.

https://pnpm.io/

To install dependancies: 'pnpm i' To start local dev: 'pnpm run dev' To add dependancies: 'pnpm add -----'

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