Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 634 Bytes

03.md

File metadata and controls

31 lines (26 loc) · 634 Bytes

webpack4 安装语法转换器-Babel,且使用装饰器

插件

devDependencies

  1. "babel-core": "^6.26.3",
  2. "babel-loader": "^7.1.5",
  3. "babel-plugin-transform-decorators-legacy": "^1.3.5",
  4. "babel-polyfill": "^6.26.0",
  5. "babel-preset-es2015": "^6.24.1",
  6. "babel-preset-latest": "^6.24.1",

webpack.config.js

module: {
    rules: [
        {test: /\.js$/, use: 'babel-loader', exclude: /node_modules/}
    ]
}

新建配置文件 .babelrc

{
    "presets": ["es2015", "latest"],
    "plugins" : ["transform-decorators-legacy"]
}

  1. babel-loader,不能使用8.0.0;应该使用7.1.5