Skip to content

Commit 5a0f721

Browse files
committed
chore: use ts-jest
1 parent d9b67ca commit 5a0f721

File tree

5 files changed

+717
-549
lines changed

5 files changed

+717
-549
lines changed

jest.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
moduleFileExtensions: ['js', 'json', 'ts'],
3+
transform: {
4+
'^.+\\.(ts)?$': 'ts-jest',
5+
},
6+
testEnvironment: 'node',
7+
testMatch: [
8+
'<rootDir>/**/*.spec.ts',
9+
],
10+
transformIgnorePatterns: ['<rootDir>/node_modules/'],
11+
};

0 commit comments

Comments
 (0)