我刚刚将我的 create-react-app 更新到了 2.1.1 版本,它增加了对 typescript 的支持(检查一下)。
通过命令npx create-react-app my-app --typescript
,默认情况下可以使用打字稿创建一个反应应用程序,但添加惰性
import React, { Component, lazy} from 'react';
导致此错误
Type error: Module '".../node_modules/@types/react/index"'
has no exported member 'lazy'. TS2305
可能我在这里遗漏了一些东西
谢谢