You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
node_modules/@guardian/types/Format.ts:49:5 - error TS1205: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.
49 Format,
~~~~~~
Found 1 error.
Solution would be to modify Format.ts from:
export {
Pillar,
Design,
Display,
Format,
}
to (note explicit type export):
export {
Pillar,
Design,
Display
};
export type { Format };
But unsure if any downsides/wanted to get feedback.
The text was updated successfully, but these errors were encountered:
Solution would be to modify
Format.ts
from:to (note explicit type export):
But unsure if any downsides/wanted to get feedback.
The text was updated successfully, but these errors were encountered: