From b6213f660b6a706f48289b492f305bc2f4620f80 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 10 Aug 2023 14:18:02 +0530 Subject: feat: style injection --- jest.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 jest.config.js (limited to 'jest.config.js') diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..976a5d4 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,16 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + transform: { + "^.+\\.spec.ts?$": [ + "ts-jest", + { + diagnostics: { + exclude: ['**'], + }, + }, + ], + }, + transformIgnorePatterns: ["/node_modules/"], +}; -- cgit v1.3.1