react-compose-components
Version:
A utility to flatten component pyramids in React.
20 lines (19 loc) • 325 B
JavaScript
module.exports = {
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.json',
},
},
moduleFileExtensions: [
'js',
'ts',
'tsx',
],
transform: {
'^.+\\.(ts|tsx)$': './node_modules/ts-jest/preprocessor.js',
},
testMatch: [
'**/*.test.(js|ts|tsx)',
],
testEnvironment: 'jsdom',
};