1.10.0 • Published 3 years ago

babel-preset-manpacker-react v1.10.0

Weekly downloads
7
License
MIT
Repository
github
Last release
3 years ago

npm npm bundle size npm NPM nodei.co

Explain

Manpacker react preset based on babel7 encapsulation. The presets is "manpacker" The following plug-ins are used: "babel-plugin-transform-react-remove-prop-types". Babel presets polyfill default config:

{"useBuiltIns": "usage", corejs: 3}

Configuration items can be referenced: babel-preset-manpacker

Install

npm install babel-preset-manpacker-react -D

Usage

  • Add  .babelrc   file to your project.  

Configuration content of file.

{
  "presets": ["manpacker-react"]
}
  • You can add a configuration entry to the package.json file as follows.
"babel": {
  "presets": ["manpacker-react"]
}

Refer to the following configuration. Example:

"babel": {
  "presets": [
    ["manpacker-react", {"useBuiltIns": "entry"}]
  ]
}

Ingress files need to be manually introduced

import "@babel/polyfill"

Npm

link