解决Webpack中提示syntax 'classProperties' isn't currently enabled的错误

Posted 52tech

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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‘]
         }
       },

  

再次运行程序,发现之前的问题就没有了。

以上是关于解决Webpack中提示syntax 'classProperties' isn't currently enabled的错误的主要内容,如果未能解决你的问题,请参考以下文章

运行scrapy crawl (文件名)时显示invalid syntax和no modle 'win32api'解决方案

error C2143: syntax error : missing ';' before '}'

运行shell脚本提示syntax error near unexpected token `$'do ''

centos7系统出现“-bash:syntax error near unexpected token `('”错误的解决方法

解决webpack打包Syntax Error: Thread Loader (Worker 9) The "from" argument must be of type 问题

Python在开发程序时提示错误提示“invalid syntax”是什么原因已解决