@neo-one/simulation-react-template-esnext-esm
Version:
NEO•ONE React Template Simulation.
18 lines (16 loc) • 408 B
JavaScript
const path = require('path');
module.exports = {
rootDir: path.resolve(__dirname),
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.jest.json',
},
},
moduleFileExtensions: ['js', 'jsx', 'json', 'node', 'ts', 'tsx'],
testEnvironment: 'node',
testPathIgnorePatterns: ['/node_modules/'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testRegex: '^.*/tests/.*\\.test\\.tsx?$',
};