@vitorpontesl8/babel
v2.3.6
Published
Uma biblioteca de componentes React pessoal.
Maintainers
Readme
React + TypeScript + Vite
Biblioteca de Componentes React + TypeScript Esta é uma biblioteca de componentes em React com TypeScript, desenvolvida com foco em projetos colaborativos em equipe.
✅ Totalmente traduzida para o português (pt-BR)
🌐 Suporte à internacionalização (i18n) — com possibilidade de adicionar outros idiomas conforme a necessidade
🧩 Ideal para times que buscam padronização, produtividade e componentes reutilizáveis
📮 Sugestões ou pedidos de componentes Entre em contato: [email protected]
💖 Apoie este projeto Você pode contribuir com doações através do https://www.paypal.com/donate/?hosted_button_id=TEW4HJ5T9Q2LA.
React + TypeScript Component Library This is a React component library written in TypeScript, created with a focus on team-based collaborative projects.
✅ Fully translated into Brazilian Portuguese (pt-BR)
🌐 Support for internationalization (i18n) — other languages can be added as needed
🧩 Perfect for teams seeking consistency, productivity, and reusable components
📮 Component requests or suggestions Contact: [email protected]
💖 Support the project You can support it with donations via https://www.paypal.com/donate/?hosted_button_id=TEW4HJ5T9Q2LA.
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
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...
},
},
])