Registry / devops / mf-transpiler-configurations

mf-transpiler-configurations

JSON →
library1.0.8jsnpmunverified

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.

npm install mf-transpiler-configurations
INSTALL
IMPORT
SIG · MF-TRANSPILER-CONF
M
mf-transpiler-configurations
devopsjavascriptv1.0.8
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default export
import config from 'mf-transpiler-configurations';
const config = require('mf-transpiler-configurations');
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.
webpackConfig
import { webpackConfig } from 'mf-transpiler-configurations';
Named export for webpack configuration function. Check actual exports since documentation is minimal.
devServerConfig
import { devServerConfig } from 'mf-transpiler-configurations';
const { devServerConfig } = require('mf-transpiler-configurations');
May or may not be exported; refer to source code.

Demonstrates importing default and named exports for webpack configuration.

// webpack.config.js import config from 'mf-transpiler-configurations'; export default config; // Or customize with spread import { webpackConfig } from 'mf-transpiler-configurations'; const customizedConfig = { ...webpackConfig, entry: './src/index.tsx', }; export default customizedConfig;
Debug
Known issues
gotchaPackage is outdated (last updated Sep 2021) and may not be compatible with newer webpack (5.x) or React 18+.
fix
Check compatibility with your current webpack and React versions; consider forking or using alternatives like Create React App or Next.js configs.
affects: >=1.0.8
gotchaNo documentation beyond README; actual exported symbols and usage unclear.
fix
Inspect source code on GitHub to determine correct imports and configuration options.
affects: *
Errors
Common errors & fixes
Cannot find module 'mf-transpiler-configurations'
Package not installed or not in node_modules.
fix
Run npm install mf-transpiler-configurations or yarn add mf-transpiler-configurations.
Module not found: Error: Can't resolve 'mf-transpiler-configurations'
Webpack cannot resolve the module entry point; package may be misconfigured.
fix
Ensure package.json has main field pointing to correct file; check node_modules contents.
Upgrade
Version history
1.0.8latest on npm
Audit
Dependencies
webpackrequiredCore dependency for bundling and build configuration.
reactrequiredTarget framework for the build configurations.
Agent activity
2 hits · last 30 days
node
2
Resources
mf-transpiler-configurations — npm install mf-transpiler-configurations · libregistry