Ian VanSchooten 6bdfcfad14 Convert @ts-ignore to @ts-expect-error
And remove unused directives
2022-09-06 22:40:59 -04:00

9 lines
181 B
TypeScript

// @ts-expect-error (Converted from ts-ignore)
import global from 'global';
const { window: globalWindow } = global;
if (globalWindow) {
globalWindow.STORYBOOK_ENV = 'react';
}