babel knowledge

Disclaimer: If you have any objection to this article, then please write your comments in the article comments at. If you find this article interesting, please share and forward, or you can look at, you acknowledge and encouragement of our articles. Wish everyone in the programming this road, farther and farther. https://blog.csdn.net/weixin_44369568/article/details/91458533

Babel

1、Babel

  • It is javascript compiler / decoder / transcoder / resolver

2, Configuration

  • .babelrc
命令:
    babel ./index.js -o ./_index.js
下包:
    cnpm install --save-dev babel-cli babel-preset-env
    
    
{
    "presets": [
        "env"
    ]
}

babel-loader // es6转es5

Guess you like

Origin blog.csdn.net/weixin_44369568/article/details/91458533