Create jest config

This commit is contained in:
Tee
2021-03-04 00:05:58 -05:00
parent 4238438adb
commit 2bf257de45

6
jest.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
"testRegex": '.*\\.test\\.ts$',
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
}