From 61f40ac4390d3151a85a53a39e1e0e5ec885b35b Mon Sep 17 00:00:00 2001 From: Stephen Li Date: Wed, 20 Jul 2022 21:38:40 -0400 Subject: [PATCH] Skip type checking when running jest with ts-node --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 777c1f8..5686a81 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,7 @@ { + "ts-node": { + "transpileOnly": true, + }, "compilerOptions": { "strict": true, "sourceMap": true,