{"id":25938,"library":"mf-transpiler-configurations","title":"mf-transpiler-configurations","description":"This package provides webpack and other UI build configurations for React projects, particularly those using monorepo or micro-frontend architecture. Current version is 1.0.8, last updated in September 2021, indicating maintenance mode. It offers opinionated defaults for webpack loaders, plugins, and dev server setup, reducing boilerplate in complex setups. However, it appears to be a niche configuration package with little activity, and documentation is sparse (only a README), making it less suitable for general use without deeper understanding.","status":"maintenance","version":"1.0.8","language":"javascript","source_language":"en","source_url":"https://github.com/vikassarkar/mf-transpiler-configurations","tags":["javascript"],"install":[{"cmd":"npm install mf-transpiler-configurations","lang":"bash","label":"npm"},{"cmd":"yarn add mf-transpiler-configurations","lang":"bash","label":"yarn"},{"cmd":"pnpm add mf-transpiler-configurations","lang":"bash","label":"pnpm"}],"dependencies":[{"reason":"Core dependency for bundling and build configuration.","package":"webpack","optional":false},{"reason":"Target framework for the build configurations.","package":"react","optional":false}],"imports":[{"note":"Package exports a default configuration object for webpack. Use ES6 imports as CommonJS require may not work if the package is ESM-only, though it likely supports both.","wrong":"const config = require('mf-transpiler-configurations');","symbol":"default export","correct":"import config from 'mf-transpiler-configurations';"},{"note":"Named export for webpack configuration function. Check actual exports since documentation is minimal.","wrong":"","symbol":"webpackConfig","correct":"import { webpackConfig } from 'mf-transpiler-configurations';"},{"note":"May or may not be exported; refer to source code.","wrong":"const { devServerConfig } = require('mf-transpiler-configurations');","symbol":"devServerConfig","correct":"import { devServerConfig } from 'mf-transpiler-configurations';"}],"quickstart":{"code":"// webpack.config.js\nimport config from 'mf-transpiler-configurations';\nexport default config;\n\n// Or customize with spread\nimport { webpackConfig } from 'mf-transpiler-configurations';\nconst customizedConfig = {\n  ...webpackConfig,\n  entry: './src/index.tsx',\n};\nexport default customizedConfig;","lang":"javascript","description":"Demonstrates importing default and named exports for webpack configuration."},"warnings":[{"fix":"Check compatibility with your current webpack and React versions; consider forking or using alternatives like Create React App or Next.js configs.","message":"Package is outdated (last updated Sep 2021) and may not be compatible with newer webpack (5.x) or React 18+.","severity":"gotcha","affected_versions":">=1.0.8"},{"fix":"Inspect source code on GitHub to determine correct imports and configuration options.","message":"No documentation beyond README; actual exported symbols and usage unclear.","severity":"gotcha","affected_versions":"*"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run npm install mf-transpiler-configurations or yarn add mf-transpiler-configurations.","cause":"Package not installed or not in node_modules.","error":"Cannot find module 'mf-transpiler-configurations'"},{"fix":"Ensure package.json has main field pointing to correct file; check node_modules contents.","cause":"Webpack cannot resolve the module entry point; package may be misconfigured.","error":"Module not found: Error: Can't resolve 'mf-transpiler-configurations'"}],"ecosystem":"npm","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}