如何在弹出的create react应用程序中添加其他插件

时间:2020-02-20 16:53:58

标签: typescript create-react-app

在弹出的CRA中,如何添加可选的链接和其他功能?我目前正在使用Typescript。

为了澄清,此功能在当前版本的react-script或CRA中受支持。但是,如果您已经弹出,则仍需要这些功能。

1 个答案:

答案 0 :(得分:-1)

在babel下的package.json中,添加以下内容:

"babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      "@babel/plugin-proposal-optional-chaining"
    ]
  }