mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-23 05:02:10 +08:00
12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
|
const config = require('../../jest.config');
|
||
|
|
||
|
module.exports = {
|
||
|
...config,
|
||
|
roots: [__dirname],
|
||
|
transform: {
|
||
|
...config.transform,
|
||
|
'.*\\.(vue)$': '<rootDir>/node_modules/jest-vue-preprocessor',
|
||
|
},
|
||
|
moduleFileExtensions: [...config.moduleFileExtensions, 'vue'],
|
||
|
};
|