1. 程式人生 > >解決Webpack中提示syntax 'classProperties' isn't currently enabled的錯誤

解決Webpack中提示syntax 'classProperties' isn't currently enabled的錯誤

當我們使用了一些JavaScript的一些新特性的時候,但是有沒有在webpack.config.js裡面或者是.babelrc檔案中配置相關外掛,就可以解決了。

error:Support for the experimental syntax 'classProperties' isn't currently enable

  

解決方案:安裝如下外掛

npm i -D @babel/plugin-proposal-class-properties

 

在babelrc中配置外掛:

options: {
        plugins: ['@babel/plugin-proposal-class-properties']
         }
       },

  

再次執行程式,發現之前的問題就沒有了。