rsnext/examples/with-typescript-graphql/jest.config.js
2020-10-27 20:20:03 +00:00

13 lines
422 B
JavaScript

module.exports = {
roots: ['<rootDir>'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'json', 'jsx'],
testPathIgnorePatterns: ['<rootDir>[/\\\\](node_modules|.next)[/\\\\]'],
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(ts|tsx)$'],
transform: {
'^.+\\.(ts|tsx)$': 'babel-jest',
'\\.graphql$': [
'graphql-let/jestTransformer',
{ subsequentTransformer: 'babel-jest' },
],
},
}