We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7de9c commit 10eecc4Copy full SHA for 10eecc4
lib/jestResolver.js
@@ -44,7 +44,7 @@ module.exports = (request, options) => {
44
...options,
45
// https://github.com/microsoft/accessibility-insights-web/pull/5421#issuecomment-1109168149
46
packageFilter: pkg => {
47
- if (!pkg.name?.startsWith('@tailwind') && pkg.name !== 'tailwindcss') {
+ if (!pkg.name?.startsWith('@tailwind') && pkg.name !== 'tailwindcss' && !pkg.name?.startsWith('storybook') && !pkg.name?.startsWith('@storybook')) {
48
delete pkg['exports'];
49
delete pkg['module'];
50
}
0 commit comments