23a2795523
Migrate Storybook package to eslint flat config + composite tsconfig.
20 lines
335 B
TypeScript
20 lines
335 B
TypeScript
import type { Preview } from '@storybook/vue3-vite';
|
|
import './preview-styles.css';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
a11y: {
|
|
test: 'todo',
|
|
},
|
|
},
|
|
tags: ['autodocs'],
|
|
};
|
|
|
|
export default preview;
|