反应 - 模块解析失败:意外的令牌

时间:2021-01-27 08:37:46

标签: javascript reactjs object npm package

在我的组件上安装和应用后,我决定安装 npm 包 react-radio-buttons 出现错误:

<块引用>
./node_modules/react-radio-buttons/index.jsx 80:6
module parse failed: Unexpected token (80:6)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
|     const style = horizontal ? { display: 'inline-flex', width: '100%' } : {};
|     return (
>       <div style={style} { ...props}>
|         {
|           children.map((c, i) => this.renderChild(c, i, i === checkedIndex)))

我想问题可能与package.json有关,但我不知道如何解决问题。在我提供包文件之前,我想警告 dependencies 对象中的很多属性,我将删除所有内容,只留下 "react-radio-buttons": "^ 1.2.2", 发生错误的实际包。

package.json

{
  "name": "my-app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react-radio-buttons": "^1.2.2",
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}

0 个答案:

没有答案