```js // .storybook/typescript-preset.js const path = require('path'); module.exports = { addons: [ { name: '@storybook/preset-typescript', options: { tsLoaderOptions: { configFile: path.resolve(__dirname, '../tsconfig.json'), }, include: [path.resolve(__dirname)], }, }, ], }; ```