ABP 属性 'tz' 在类型 'typeof moment' 上不存在

ABP Property 'tz' does not exist on type 'typeof moment'

我从 aspnetboilerplate.com 下载了 .NET Core 和 ReactJS 模板。

我初始化了数据库。

在 reactjs 文件夹中,我 运行 npm installnpm start 命令。

我收到这个错误:

Property 'tz' does not exist on type 'typeof moment'.

我试过这些:

如何开始这个项目?

@types/moment-timezone 已经 deprecated。尝试以下操作:

  1. npm uninstall @types/moment-timezone

  2. 使用以下代码:

import * as moment from 'moment';
import 'moment-timezone';

此外,请查看 GitHub

上的 issue