diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..332efa0 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,13 @@ +module.exports = { + "roots": [ + "/src", + "" + ], + "testMatch": [ + "**/__tests__/**/*.+(ts|tsx|js)", + "**/?(*.)+(spec|test).+(ts|tsx|js)" + ], + "transform": { + "^.+\\.(ts|tsx)$": "ts-jest" + }, +} \ No newline at end of file