在弹出的CRA中,如何添加可选的链接和其他功能?我目前正在使用Typescript。
为了澄清,此功能在当前版本的react-script或CRA中受支持。但是,如果您已经弹出,则仍需要这些功能。
答案 0 :(得分:-1)
在babel下的package.json
中,添加以下内容:
"babel": {
"presets": [
"react-app"
],
"plugins": [
"@babel/plugin-proposal-optional-chaining"
]
}