mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 01:38:17 +03:00
31 lines
881 B
TypeScript
31 lines
881 B
TypeScript
import type { StorybookConfig } from '@storybook/react-vite';
|
|
import { mergeConfig } from 'vite';
|
|
import { resolve } from 'node:path';
|
|
import { fileURLToPath } from 'url';
|
|
import istanbul from 'vite-plugin-istanbul';
|
|
|
|
const config: Pick<StorybookConfig, 'viteFinal'> = {
|
|
async viteFinal(config, { configType }) {
|
|
return mergeConfig(config, {
|
|
plugins: [
|
|
istanbul({
|
|
include: ['src/*'],
|
|
exclude: ['node_modules', 'test', 'stories'],
|
|
extension: ['.ts', '.tsx'],
|
|
forceBuildInstrument: process.env.COVERAGE === 'true',
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(fileURLToPath(new URL('../src', import.meta.url))),
|
|
'@affine/i18n': resolve(
|
|
fileURLToPath(new URL('../../i18n/src', import.meta.url))
|
|
),
|
|
},
|
|
},
|
|
});
|
|
},
|
|
};
|
|
|
|
export default config;
|