I'm trying to do ```ts import * as sbPreview from...
# component-testing
q
I'm trying to do
Copy code
ts
import * as sbPreview from '../../.storybook/preview';
import { setGlobalConfig } from '@storybook/testing-react';

setGlobalConfig(sbPreview);
but i keep getting
Copy code
Module not found: Error: You attempted to import ../../.storybook/preview which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
any idea how to solve it?
2 Views