UNPKG

storybook-mobile-addon

Version:

This addon offers suggestions on how you can improve the HTML, CSS and UX of your components to be more mobile-friendly.

19 lines (17 loc) 414 B
import {defineConfig} from 'tsup'; export default defineConfig((options) => ({ entry: ['src/index.ts', 'src/manager.tsx'], splitting: false, minify: !options.watch, format: ['cjs', 'esm'], dts: { resolve: true, }, treeshake: true, sourcemap: true, clean: true, platform: 'browser', esbuildOptions(options) { options.conditions = ['module']; }, }));