From 5d3b206a80fc9d94a1e794d31dc3ec3fe2ab8037 Mon Sep 17 00:00:00 2001 From: Eugenio Sales Date: Fri, 14 Oct 2022 19:55:14 -0300 Subject: [PATCH] feature #1 - Add jest config --- jest.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jest.config.ts diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 0000000..dbcf4e9 --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,9 @@ +import type {Config} from '@jest/types'; +// Sync object +const config: Config.InitialOptions = { + verbose: true, + transform: { + "^.+\\.tsx?$": "ts-jest", + }, +}; +export default config;