UNPKG

419 BJavaScriptView Raw
1'use strict';
2
3module.exports = {
4 globals: {
5 'ts-jest': {
6 isolatedModules: true,
7 },
8 },
9 testEnvironment: 'node',
10 transform: {
11 '^.+\\.tsx?$': 'ts-jest',
12 },
13 testRegex: './tests/.+\\.spec\\.ts$',
14 collectCoverage: false,
15 collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}'],
16 moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
17 coverageReporters: ['text-summary', 'lcov'],
18};