Miroq.ru lending website source code
  • TypeScript 75.8%
  • CSS 12.7%
  • HTML 7.6%
  • JavaScript 3.9%
Find a file
2025-10-20 09:27:23 +04:00
public Fix icons path 2025-08-03 11:43:04 +04:00
src Refactor welcome 2025-10-20 09:27:23 +04:00
.gitignore Nasral v reposiyory 2025-06-10 20:11:53 +04:00
.prettierrc Chore: Update dependecies 2025-10-20 08:38:08 +04:00
bun.lock Chore: Update dependecies 2025-10-20 08:38:08 +04:00
dist.tar Nasral v reposiyory 2025-06-10 20:11:53 +04:00
eslint.config.js Nasral v reposiyory 2025-06-10 20:11:53 +04:00
index.html Add pege preview 2025-08-03 11:33:13 +04:00
package.json Chore: Update dependecies 2025-10-20 08:38:08 +04:00
README.md Nasral v reposiyory 2025-06-10 20:11:53 +04:00
tsconfig.app.json Add @ paths 2025-08-03 11:21:29 +04:00
tsconfig.json Nasral v reposiyory 2025-06-10 20:11:53 +04:00
tsconfig.node.json Nasral v reposiyory 2025-06-10 20:11:53 +04:00
vite.config.ts Add @ paths 2025-08-03 11:21:29 +04: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:

export default tseslint.config({
  extends: [
    // 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,
  ],
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})

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({
  plugins: {
    // Add the react-x and react-dom plugins
    'react-x': reactX,
    'react-dom': reactDom,
  },
  rules: {
    // other rules...
    // Enable its recommended typescript rules
    ...reactX.configs['recommended-typescript'].rules,
    ...reactDom.configs.recommended.rules,
  },
})