Erica Walsh

Results 3 comments of Erica Walsh

@Maftalion @jbeuckm I was able to get this working by updating my .storybook/main.js file to the following: ``` const custom = require('../webpack.config.js'); module.exports = { stories: ['../src/components/**/*.stories.@(js|jsx|ts|tsx)'], addons: ['@storybook/addon-links', '@storybook/addon-essentials'],...

@Maftalion I believe you're missing `tsx` files where you define the rules in your webpack config file. Try adding it in there, like this: `test: /\.(ts|tsx)$/,`