mirror of
https://github.com/owncast/owncast.git
synced 2024-12-27 19:48:32 +03:00
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
|
module.exports = {
|
||
|
transform: { '^.+\\.ts?$': 'ts-jest' },
|
||
|
testEnvironment: 'node',
|
||
|
testRegex: '/tests/.*\\.(test|spec)?\\.(ts|tsx)$',
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
||
|
};
|