Install and configure ts-jest

This commit is contained in:
2023-10-06 17:07:49 -04:00
parent 30443c1b7e
commit 2b2ba610a7
4 changed files with 86 additions and 0 deletions

5
jest.config.js Normal file
View File

@@ -0,0 +1,5 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};