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 was 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.