You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
// For a detailed explanation regarding each configuration property, visit:
|
|
// https://jestjs.io/docs/en/configuration.html
|
|
|
|
module.exports = {
|
|
transform: {
|
|
'^.+\\.(j|t)s$': 'ts-jest',
|
|
},
|
|
coverageDirectory: './coverage/',
|
|
collectCoverageFrom: ['src/**/*.ts'],
|
|
testMatch: ['<rootDir>/**/__tests__/**/*spec.[jt]s?(x)'],
|
|
};
|