How to enable optional chaining with Create React App and TypeScript

后端 未结 3 1781
心在旅途
心在旅途 2021-02-18 17:59

Support for the experimental syntax \'optionalChaining\' isn\'t currently enabled

I was getting the above error. I followed this post and

3条回答
  •  伪装坚强ぢ
    2021-02-18 18:43

    Create-React-App uses babel to transpile the TypeScript so it isn't using your npm installed version of TypeScript. Version 3.3.0 of react-scripts supports TypeScript 3.7. You can install it and use it with:

    • yarn add react-scripts@3.3.0

      -or-

    • npm install -s react-scripts@3.3.0

提交回复
热议问题