storybook/docs/snippets/common/storybook-main-ts-module-resolution.js.mdx
2021-11-09 01:41:54 +00:00

15 lines
282 B
Plaintext

```js
// .storybook/main.js
module.exports = {
webpackFinal: async (config) => {
config.resolve.plugins = [
...(config.resolve.plugins || []),
new TsconfigPathsPlugin({
extensions: config.resolve.extensions,
}),
];
return config;
},
};
```