mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-25 04:55:30 +03:00
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
|
module.exports = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
transform: {
|
||
|
'^.+\\.ts?$': 'ts-jest',
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js'],
|
||
|
transformIgnorePatterns: ['/node_modules/'],
|
||
|
};
|