1.10.0 • Published 3 years ago

babel-preset-manpacker v1.10.0

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

npm npm bundle size npm NPM nodei.co

Explain

Manpacker preset based on babel7 encapsulation. The following plug-ins are used: "@babel/plugin-proposal-class-properties". "@babel/plugin-proposal-decorators". "@babel/plugin-syntax-dynamic-import". "@babel/polyfill". "babel-plugin-dynamic-import-node". Babel presets polyfill default config:

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

Configuration items can be referenced: @babel/preset-env

There are two attributes outside:

keyvalueexplain
decoratorsLegacytrueplugin:"decorators"
propertiesLoosetrueplugin:"properties"

Install

npm install babel-preset-manpacker -D

Usage

  • Add  .babelrc   file to your project.  

Configuration content of file.

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

Refer to the following configuration. Example:

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

Ingress files need to be manually introduced

import "@babel/polyfill"

Npm

link