TS2498

Module 'node_modules/@types/ms/index'uses export =and cannot be used withexport \*

Broken Code ❌

index.ts

export * from 'ms';

Fixed Code ✔️

If a third-party module uses a default export (indicated by the export = syntax), you must use the default keyword to re-export this module:

export { default as ms } from 'ms';