Reusable lint, webpack, babel and jest configuration package, version 3.0.10-0. Provides shared configurations for JavaScript/TypeScript projects, reducing setup overhead. Release cadence is irregular. Key differentiator: combines multiple tool configs into one dependency, but note that many projects now prefer using eslint-config-* or @babel/preset-env directly with more flexibility.
npm install jarbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Imports and uses all config exports from jarb package.
Switch to ESM imports or use dynamic import() if necessary.
Use named exports like lintConfig, webpackConfig, etc.
Use Object.assign or spread operator to create a new config object.
Change to import statement or use --es-module-specifier-resolution=node flag.
Create a copy: const myConfig = { ...lintConfig, rules: { ...lintConfig.rules, 'my-rule': 'warn' } };No dependency data recorded yet.