Initial commit

This commit is contained in:
Michal Dorner 2020-05-20 17:03:08 +02:00
commit b78de5e86b
17 changed files with 7306 additions and 0 deletions

11
jest.config.js Normal file
View file

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