mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 22:11:55 +03:00
13 lines
431 B
JavaScript
13 lines
431 B
JavaScript
module.exports = {
|
|
displayName: 'ligo-virgo',
|
|
preset: '../../jest.preset.js',
|
|
transform: {
|
|
'node_modules\\/.+\\.js$': 'jest-esm-transformer',
|
|
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest',
|
|
'^.+\\.[tj]sx?$': 'babel-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/apps/ligo-virgo',
|
|
transformIgnorePatterns: [],
|
|
};
|