initial commit

This commit is contained in:
Bryan MacFarlane
2020-01-09 18:32:59 -05:00
commit 0fc3b75a6d
15 changed files with 6163 additions and 0 deletions

10
jest.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}