react-lib-djuypazbnkchff
v1.0.14
Published
This is a personal use React Library. I'm practicing using npm to break up my projects into reusable components. This is primarily to conserve work that I've spent a lot of time on and to prevent me from recreating wheels I've already built several times
Readme
Personal Use React Library
This is a personal use React Library. I'm practicing using npm to break up my projects into reusable components. This is primarily to conserve work that I've spent a lot of time on and to prevent me from recreating wheels I've already built several times before.
Documentation Practice
I'll attempt to create documentation for core components that I create as I go.
// eslint.config.js
import reactX from "eslint-plugin-react-x";
import reactDom from "eslint-plugin-react-dom";
export default defineConfig([
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...
},
},
]);