rebyb-redux
Version:
rebyb-redux is a lightweight, Redux-like state management library for React applications, designed for simplicity and efficiency. Built with TypeScript, it allows developers to easily manage global state with a minimal setup. With features like customizab
28 lines (27 loc) • 722 B
JSON
{
"compilerOptions": {
"target": "ES5",
"module": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"declaration": true,
"declarationDir": "./dist",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"resolveJsonModule": true,
"allowJs": true,
"noEmit": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "Node"
},
"include": [
"src/**/*",
"../rebyb-redux-ts/src/src/components/rebybStore.tsx"
],
"exclude": ["node_modules", "dist"]
}