Go to file
hardik 2f79c22280 feature : added product page 2025-09-12 06:52:25 +00:00
.yarn feature : added product page 2025-09-12 06:52:25 +00:00
public Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
src feature : added product page 2025-09-12 06:52:25 +00:00
.drone.yml docker build repo name in lowercase 2025-09-11 17:23:04 +05:30
.gitignore Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
.yarnrc.yml added coming soon page 2025-09-11 09:39:08 +00:00
Dockerfile added coming soon page 2025-09-11 09:39:08 +00:00
README.md Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
eslint.config.js Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
index.html feature : added product page 2025-09-12 06:52:25 +00:00
package-lock.json Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
package.json feature : added product page 2025-09-12 06:52:25 +00:00
tsconfig.app.json added coming soon page 2025-09-11 09:39:08 +00:00
tsconfig.json Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
tsconfig.node.json Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
vite.config.ts Initial Vite + React + TS 2025-09-10 17:23:05 +05:30
yarn.lock feature : added product page 2025-09-12 06:52:25 +00: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:

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      ...tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      ...tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      ...tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])