新下了个ABP工程,npm install , 然后npm start, 结果报错:Property 'tz' does not exist on type 'typeof moment'.

moment.tz.setDefault(abp.timing.timeZoneInfo.iana.timeZoneId);

因为这一段报错:

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

24 |
25 | if (abp.clock.provider.supportsMultipleTimezone) {
> 26 | moment.tz.setDefault(abp.timing.timeZoneInfo.iana.timeZoneId);
| ^
27 | }
28 |
29 | const stores = initializeStores();
This error occurred during the build time and cannot be dismissed.

正经的,

报错:Property ‘tz‘ does not exist on type ‘typeof moment‘._ide


这里换成

import * as moment from 'moment-timezone';