mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 23:02:00 +08:00
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.(t|j)sx?$': [
|
|
'@swc/jest',
|
|
{
|
|
jsc: {
|
|
parser: {
|
|
syntax: 'typescript',
|
|
tsx: false,
|
|
decorators: false,
|
|
dynamicImport: false,
|
|
},
|
|
experimental: {
|
|
plugins: [['jest_workaround', {}]],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
transformIgnorePatterns: [],
|
|
};
|