Joe Wollard

Results 15 comments of Joe Wollard

I haven't seen this issue myself and I can't seem to reproduce it locally with node v16.13.0 on macOS. @rajmonotype are you also on Windows by chance?

Hey @larryhuang et al. I've just released v1.4.0 over on npm under the `next` tag. I realize this issue is old, but if anyone listed here is still struggling with...

It looks to me like the problem is with the underlying webpack config. Running `npx start-storybook --debug-webpack` when presets.js only has `module.exports = ["@storybook/preset-typescript"];` produces the following: ```js // ......

Looks like `include` defaults to an empty array here: https://github.com/storybookjs/presets/blob/master/packages/preset-typescript/index.js#L9 If we can take a [note from CRA](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/config/paths.js#L17-L18), maybe it could default to something more like this: ```js const appDirectory...

I was gonna create a fork and throw up a pull request for this, but it looks like that's already being addressed by @T0MASD in #83 👍